diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/Commands.DataLakeAnalytics.Test.csproj b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/Commands.DataLakeAnalytics.Test.csproj
index 0fe7bd4f0799..a90be7acc7a9 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/Commands.DataLakeAnalytics.Test.csproj
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/Commands.DataLakeAnalytics.Test.csproj
@@ -64,7 +64,7 @@
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.Analytics.3.1.2-preview\lib\net452\Microsoft.Azure.Management.DataLake.Analytics.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.Analytics.3.3.0-preview\lib\net452\Microsoft.Azure.Management.DataLake.Analytics.dll
True
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaAliasTests.ps1 b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaAliasTests.ps1
index 569aeef3b659..633b798b673d 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaAliasTests.ps1
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaAliasTests.ps1
@@ -1215,6 +1215,207 @@ function Test-DataLakeAnalyticsCatalog
# verify that the second secret cannot be retrieved
Assert-Throws {Get-AdlCatalogItem -AccountName $accountName -ItemType Secret -Path "$databaseName.$secretName2"}
+ # prepare to grant/revoke ACLs
+ $userPrincipalId = "027c28d5-c91d-49f0-98c5-d10134b169b3"
+ $groupPrincipalId = "58d2027c-d19c-0f94-5c89-1b43101d3b96"
+
+ # get the initial number of ACL by db
+ $aclByDbList = Get-AdlCatalogItemAclEntry -AccountName $accountName -ItemType Database -Path $databaseName
+ $aclByDbInitialCount = $aclByDbList.count
+
+ # get the initial number of ACL by catalog
+ $aclList = Get-AdlCatalogItemAclEntry -AccountName $accountName
+ $aclInitialCount = $aclList.count
+
+ # grant ACL entry for user to the db
+ $aclByDbList = Set-AdlCatalogItemAclEntry -AccountName $accountName -User -Id $userPrincipalId -ItemType Database -Path $databaseName -Permissions Read
+
+ Assert-AreEqual $($aclByDbInitialCount+1) $aclByDbList.count
+ $found = $false
+ foreach($acl in $aclByDbList)
+ {
+ if($acl.Id -eq $userPrincipalId)
+ {
+ # confirm the ACE's information
+ Assert-AreEqual User $acl.Type
+ Assert-AreEqual $userPrincipalId $acl.Id
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for $userPrincipalId in the ACL list of $databaseName"
+
+ # revoke ACE for user from the db
+ Assert-True {Remove-AdlCatalogItemAclEntry -AccountName $accountName -User -Id $userPrincipalId -ItemType Database -Path $databaseName -PassThru} "Remove ACE failed."
+
+ $aclByDbList = Get-AdlCatalogItemAclEntry -AccountName $accountName -ItemType Database -Path $databaseName
+ Assert-AreEqual $aclByDbInitialCount $aclByDbList.count
+
+ # grant ACL entry for group to the db
+ $aclByDbList = Set-AdlCatalogItemAclEntry -AccountName $accountName -Group -Id $groupPrincipalId -ItemType Database -Path $databaseName -Permissions Read
+
+ Assert-AreEqual $($aclByDbInitialCount+1) $aclByDbList.count
+ $found = $false
+ foreach($acl in $aclByDbList)
+ {
+ if($acl.Id -eq $groupPrincipalId)
+ {
+ # confirm the ACE's information
+ Assert-AreEqual Group $acl.Type
+ Assert-AreEqual $groupPrincipalId $acl.Id
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for $groupPrincipalId in the ACL list of $databaseName"
+
+ # revoke ACE for group from the db
+ Assert-True {Remove-AdlCatalogItemAclEntry -AccountName $accountName -Group -Id $groupPrincipalId -ItemType Database -Path $databaseName -PassThru} "Remove ACE failed."
+
+ $aclByDbList = Get-AdlCatalogItemAclEntry -AccountName $accountName -ItemType Database -Path $databaseName
+ Assert-AreEqual $aclByDbInitialCount $aclByDbList.count
+
+ # set ACL entry for other
+ $aclByDbList = Set-AdlCatalogItemAclEntry -AccountName $accountName -Other -ItemType Database -Path $databaseName -Permissions None
+ Assert-AreEqual $aclByDbInitialCount $aclByDbList.count
+ $found = $false
+ foreach($acl in $aclByDbList)
+ {
+ if($acl.Type -eq "Other")
+ {
+ # confirm the ACE's information
+ Assert-AreEqual None $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for Other in the ACL list of $databaseName"
+
+ $aclByDbList = Set-AdlCatalogItemAclEntry -AccountName $accountName -Other -ItemType Database -Path $databaseName -Permissions Read
+ Assert-AreEqual $aclByDbInitialCount $aclByDbList.count
+ $found = $false
+ foreach($acl in $aclByDbList)
+ {
+ if($acl.Type -eq "Other")
+ {
+ # confirm the ACE's information
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for Other in the ACL list of $databaseName"
+
+ # set owner permission to the db
+ $prevDbOwnerAcl = Get-AdlCatalogItemAclEntry -AccountName $accountName -UserOwner -ItemType Database -Path $databaseName
+ Assert-AreNotEqual None $prevDbOwnerAcl.Permissions
+ $currentDbOwnerAcl = Set-AdlCatalogItemAclEntry -AccountName $accountName -UserOwner -ItemType Database -Path $databaseName -Permissions None
+ Assert-AreEqual None $currentDbOwnerAcl.Permissions
+ $prevDbGroupAcl = Get-AdlCatalogItemAclEntry -AccountName $accountName -GroupOwner -ItemType Database -Path $databaseName
+ Assert-AreNotEqual None $prevDbGroupAcl.Permissions
+ $currentDbGroupAcl = Set-AdlCatalogItemAclEntry -AccountName $accountName -GroupOwner -ItemType Database -Path $databaseName -Permissions None
+ Assert-AreEqual None $currentDbGroupAcl.Permissions
+
+ # grant ACE for user to the catalog
+ $aclList = Set-AdlCatalogItemAclEntry -AccountName $accountName -User -Id $userPrincipalId -Permissions Read
+ Assert-AreEqual $($aclInitialCount+1) $aclList.count
+ $found = $false
+ foreach($acl in $aclList)
+ {
+ if($acl.Id -eq $userPrincipalId)
+ {
+ # confirm the ACE's information
+ Assert-AreEqual User $acl.Type
+ Assert-AreEqual $userPrincipalId $acl.Id
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for $userPrincipalId in the Catalog ACL list"
+
+ # revoke ACE for user from the catalog
+ Assert-True {Remove-AdlCatalogItemAclEntry -AccountName $accountName -User -Id $userPrincipalId -PassThru} "Remove ACE failed."
+
+ $aclList = Get-AdlCatalogItemAclEntry -AccountName $accountName
+ Assert-AreEqual $aclInitialCount $aclList.count
+
+ # grant ACL entry for group to the catalog
+ $aclList = Set-AdlCatalogItemAclEntry -AccountName $accountName -Group -Id $groupPrincipalId -Permissions Read
+
+ Assert-AreEqual $($aclInitialCount+1) $aclList.count
+ $found = $false
+ foreach($acl in $aclList)
+ {
+ if($acl.Id -eq $groupPrincipalId)
+ {
+ # confirm the ACE's information
+ Assert-AreEqual Group $acl.Type
+ Assert-AreEqual $groupPrincipalId $acl.Id
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for $groupPrincipalId in the Catalog ACL list"
+
+ # revoke ACE for group from the catalog
+ Assert-True {Remove-AdlCatalogItemAclEntry -AccountName $accountName -Group -Id $groupPrincipalId -PassThru} "Remove ACE failed."
+
+ $aclList = Get-AdlCatalogItemAclEntry -AccountName $accountName
+ Assert-AreEqual $aclInitialCount $aclList.count
+
+ # set ACL entry for other
+ $aclList = Set-AdlCatalogItemAclEntry -AccountName $accountName -Other -Permissions None
+ Assert-AreEqual $aclInitialCount $aclList.count
+ $found = $false
+ foreach($acl in $aclList)
+ {
+ if($acl.Type -eq "Other")
+ {
+ # confirm the ACE's information
+ Assert-AreEqual None $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for Other in the Catalog ACL list"
+
+ $aclList = Set-AdlCatalogItemAclEntry -AccountName $accountName -Other -Permissions Read
+ Assert-AreEqual $aclInitialCount $aclList.count
+ $found = $false
+ foreach($acl in $aclList)
+ {
+ if($acl.Type -eq "Other")
+ {
+ # confirm the ACE's information
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for Other in the Catalog ACL list"
+
+ # set owner permission to the catalog
+ $prevCatalogOwnerAcl = Get-AdlCatalogItemAclEntry -AccountName $accountName -UserOwner
+ Assert-AreNotEqual None $prevCatalogOwnerAcl.Permissions
+ $currentCatalogOwnerAcl = Set-AdlCatalogItemAclEntry -AccountName $accountName -UserOwner -Permissions None
+ Assert-AreEqual None $currentCatalogOwnerAcl.Permissions
+ $prevCatalogGroupAcl = Get-AdlCatalogItemAclEntry -AccountName $accountName -GroupOwner
+ Assert-AreNotEqual None $prevCatalogGroupAcl.Permissions
+ $currentCatalogGroupAcl = Set-AdlCatalogItemAclEntry -AccountName $accountName -GroupOwner -Permissions None
+ Assert-AreEqual None $currentCatalogGroupAcl.Permissions
+
# Delete the DataLakeAnalytics account
Assert-True {Remove-AdlAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.ps1 b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.ps1
index a24eb016e273..2925d4ca326e 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.ps1
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.ps1
@@ -1217,6 +1217,206 @@ function Test-DataLakeAnalyticsCatalog
# verify that the second secret cannot be retrieved
Assert-Throws {Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Secret -Path "$databaseName.$secretName2"}
+ # prepare to grant/revoke ACLs
+ $userPrincipalId = "027c28d5-c91d-49f0-98c5-d10134b169b3"
+ $groupPrincipalId = "9b6130bf-d65e-4464-b92e-733da0bc1c43"
+
+ # get the initial number of ACL by db
+ $aclByDbList = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -ItemType Database -Path $databaseName
+ $aclByDbInitialCount = $aclByDbList.count
+
+ # get the initial number of ACL by catalog
+ $aclList = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName
+ $aclInitialCount = $aclList.count
+
+ # grant ACL entry for user to the db
+ $aclByDbList = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -User -ObjectId $userPrincipalId -ItemType Database -Path $databaseName -Permissions Read
+
+ Assert-AreEqual $($aclByDbInitialCount+1) $aclByDbList.count
+ $found = $false
+ foreach($acl in $aclByDbList)
+ {
+ if($acl.Id -eq $userPrincipalId)
+ {
+ # confirm the ACE's information
+ Assert-AreEqual User $acl.Type
+ Assert-AreEqual $userPrincipalId $acl.Id
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for $userPrincipalId in the ACL list of $databaseName"
+
+ # revoke ACE for user from the db
+ Assert-True {Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -User -ObjectId $userPrincipalId -ItemType Database -Path $databaseName -PassThru} "Remove ACE failed."
+
+ $aclByDbList = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -ItemType Database -Path $databaseName
+ Assert-AreEqual $aclByDbInitialCount $aclByDbList.count
+
+ # grant ACL entry for group to the db
+ $aclByDbList = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -Group -ObjectId $groupPrincipalId -ItemType Database -Path $databaseName -Permissions Read
+ Assert-AreEqual $($aclByDbInitialCount+1) $aclByDbList.count
+ $found = $false
+ foreach($acl in $aclByDbList)
+ {
+ if($acl.Id -eq $groupPrincipalId)
+ {
+ # confirm the ACE's information
+ Assert-AreEqual Group $acl.Type
+ Assert-AreEqual $groupPrincipalId $acl.Id
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for $groupPrincipalId in the ACL list of $databaseName"
+
+ # revoke ACE for group from the db
+ Assert-True {Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -Group -ObjectId $groupPrincipalId -ItemType Database -Path $databaseName -PassThru} "Remove ACE failed."
+
+ $aclByDbList = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -ItemType Database -Path $databaseName
+ Assert-AreEqual $aclByDbInitialCount $aclByDbList.count
+
+ # set ACL entry for other
+ $aclByDbList = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -Other -ItemType Database -Path $databaseName -Permissions None
+ Assert-AreEqual $aclByDbInitialCount $aclByDbList.count
+ $found = $false
+ foreach($acl in $aclByDbList)
+ {
+ if($acl.Type -eq "Other")
+ {
+ # confirm the ACE's information
+ Assert-AreEqual None $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for Other in the ACL list of $databaseName"
+
+ $aclByDbList = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -Other -ItemType Database -Path $databaseName -Permissions Read
+ Assert-AreEqual $aclByDbInitialCount $aclByDbList.count
+ $found = $false
+ foreach($acl in $aclByDbList)
+ {
+ if($acl.Type -eq "Other")
+ {
+ # confirm the ACE's information
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for Other in the ACL list of $databaseName"
+
+ # set owner permission to the db
+ $prevDbOwnerAcl = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -UserOwner -ItemType Database -Path $databaseName
+ Assert-AreNotEqual None $prevDbOwnerAcl.Permissions
+ $currentDbOwnerAcl = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -UserOwner -ItemType Database -Path $databaseName -Permissions None
+ Assert-AreEqual None $currentDbOwnerAcl.Permissions
+ $prevDbGroupAcl = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -GroupOwner -ItemType Database -Path $databaseName
+ Assert-AreNotEqual None $prevDbGroupAcl.Permissions
+ $currentDbGroupAcl = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -GroupOwner -ItemType Database -Path $databaseName -Permissions None
+ Assert-AreEqual None $currentDbGroupAcl.Permissions
+
+ # grant ACE for user to the catalog
+ $aclList = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -User -ObjectId $userPrincipalId -Permissions Read
+ Assert-AreEqual $($aclInitialCount+1) $aclList.count
+ $found = $false
+ foreach($acl in $aclList)
+ {
+ if($acl.Id -eq $userPrincipalId)
+ {
+ # confirm the ACE's information
+ Assert-AreEqual User $acl.Type
+ Assert-AreEqual $userPrincipalId $acl.Id
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for $userPrincipalId in the Catalog ACL list"
+
+ # revoke ACE for user from the catalog
+ Assert-True {Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -User -ObjectId $userPrincipalId -PassThru} "Remove ACE failed."
+
+ $aclList = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName
+ Assert-AreEqual $aclInitialCount $aclList.count
+
+ # grant ACL entry for group to the catalog
+ $aclList = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -Group -ObjectId $groupPrincipalId -Permissions Read
+
+ Assert-AreEqual $($aclInitialCount+1) $aclList.count
+ $found = $false
+ foreach($acl in $aclList)
+ {
+ if($acl.Id -eq $groupPrincipalId)
+ {
+ # confirm the ACE's information
+ Assert-AreEqual Group $acl.Type
+ Assert-AreEqual $groupPrincipalId $acl.Id
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for $groupPrincipalId in the Catalog ACL list"
+
+ # revoke ACE for group from the catalog
+ Assert-True {Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -Group -ObjectId $groupPrincipalId -PassThru} "Remove ACE failed."
+
+ $aclList = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName
+ Assert-AreEqual $aclInitialCount $aclList.count
+
+ # set ACL entry for other
+ $aclList = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -Other -Permissions None
+ Assert-AreEqual $aclInitialCount $aclList.count
+ $found = $false
+ foreach($acl in $aclList)
+ {
+ if($acl.Type -eq "Other")
+ {
+ # confirm the ACE's information
+ Assert-AreEqual None $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for Other in the Catalog ACL list"
+
+ $aclList = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -Other -Permissions Read
+ Assert-AreEqual $aclInitialCount $aclList.count
+ $found = $false
+ foreach($acl in $aclList)
+ {
+ if($acl.Type -eq "Other")
+ {
+ # confirm the ACE's information
+ Assert-AreEqual Read $acl.Permissions
+ $found = $true
+ break
+ }
+ }
+
+ Assert-True {$found} "Could not find the entry for Other in the Catalog ACL list"
+
+ # set owner permission to the catalog
+ $prevCatalogOwnerAcl = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -UserOwner
+ Assert-AreNotEqual None $prevCatalogOwnerAcl.Permissions
+ $currentCatalogOwnerAcl = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -UserOwner -Permissions None
+ Assert-AreEqual None $currentCatalogOwnerAcl.Permissions
+ $prevCatalogGroupAcl = Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -GroupOwner
+ Assert-AreNotEqual None $prevCatalogGroupAcl.Permissions
+ $currentCatalogGroupAcl = Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account $accountName -GroupOwner -Permissions None
+ Assert-AreEqual None $currentCatalogGroupAcl.Permissions
+
# Delete the DataLakeAnalytics account
Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTestsBase.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTestsBase.cs
index 4c5f1f0b3735..5f10ed589a54 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTestsBase.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTestsBase.cs
@@ -44,7 +44,7 @@ public class AdlaTestsBase : RMTestBase
internal string resourceGroupName { get; set; }
internal string azureBlobStoreName { get; set; }
internal string azureBlobStoreAccessKey { get; set; }
- internal const string resourceGroupLocation = "East US 2";
+ internal const string resourceGroupLocation = "eastus2";
private LegacyTest.CSMTestEnvironmentFactory csmTestFactory;
private EnvironmentSetupHelper helper;
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaAccount.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaAccount.json
index 3255fcee3f98..316b989505c9 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaAccount.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaAccount.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,22 +28,25 @@
"1199"
],
"x-ms-request-id": [
- "ba44e5aa-7adf-4a9b-83ea-2be9972a7be0"
+ "8409bcc8-e3cd-4812-95b3-6cf05f94e58f"
],
"x-ms-correlation-request-id": [
- "ba44e5aa-7adf-4a9b-83ea-2be9972a7be0"
+ "8409bcc8-e3cd-4812-95b3-6cf05f94e58f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023247Z:ba44e5aa-7adf-4a9b-83ea-2be9972a7be0"
+ "AUSTRALIAEAST:20180607T125602Z:8409bcc8-e3cd-4812-95b3-6cf05f94e58f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:32:47 GMT"
+ "Thu, 07 Jun 2018 12:56:01 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,49 +76,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14999"
],
"x-ms-request-id": [
- "3df318b8-d219-48c0-89a6-e87d9e3ecd23"
+ "cedc1ad7-c45f-40ee-8e8b-69b5ad7401f9"
],
"x-ms-correlation-request-id": [
- "3df318b8-d219-48c0-89a6-e87d9e3ecd23"
+ "cedc1ad7-c45f-40ee-8e8b-69b5ad7401f9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023247Z:3df318b8-d219-48c0-89a6-e87d9e3ecd23"
+ "AUSTRALIAEAST:20180607T125602Z:cedc1ad7-c45f-40ee-8e8b-69b5ad7401f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:32:47 GMT"
+ "Thu, 07 Jun 2018 12:56:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg1175?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTE3NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg19773?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTk3NzM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg1175\",\r\n \"name\": \"abarg1175\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg19773\",\r\n \"name\": \"abarg19773\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "172"
+ "174"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -130,29 +136,32 @@
"1198"
],
"x-ms-request-id": [
- "6bf08654-52a3-45a6-a1f4-91c6c29f7b4e"
+ "9ed56322-34e0-43a7-9b78-b8b8a15ce59e"
],
"x-ms-correlation-request-id": [
- "6bf08654-52a3-45a6-a1f4-91c6c29f7b4e"
+ "9ed56322-34e0-43a7-9b78-b8b8a15ce59e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023257Z:6bf08654-52a3-45a6-a1f4-91c6c29f7b4e"
+ "AUSTRALIAEAST:20180607T125615Z:9ed56322-34e0-43a7-9b78-b8b8a15ce59e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:32:56 GMT"
+ "Thu, 07 Jun 2018 12:56:14 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg1175?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTE3NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg19773?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTk3NzM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -160,10 +169,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg1175\",\r\n \"name\": \"abarg1175\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg19773\",\r\n \"name\": \"abarg19773\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "172"
+ "174"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -175,43 +184,46 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14998"
],
"x-ms-request-id": [
- "d1d63bf2-03ab-43ce-b74e-9608fbb174ee"
+ "f5857768-992d-4503-8ea4-3389825bf017"
],
"x-ms-correlation-request-id": [
- "d1d63bf2-03ab-43ce-b74e-9608fbb174ee"
+ "f5857768-992d-4503-8ea4-3389825bf017"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023257Z:d1d63bf2-03ab-43ce-b74e-9608fbb174ee"
+ "AUSTRALIAEAST:20180607T125615Z:f5857768-992d-4503-8ea4-3389825bf017"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:32:56 GMT"
+ "Thu, 07 Jun 2018 12:56:15 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg1175/providers/Microsoft.Storage/storageAccounts/azureblob01967?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTE3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F6dXJlYmxvYjAxOTY3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg19773/providers/Microsoft.Storage/storageAccounts/azureblob013831?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk3NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTM4MzE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "91"
+ "89"
],
"x-ms-client-request-id": [
- "3545573b-0387-4c1e-b187-01c686a1790c"
+ "1eceb5fd-45d1-4d35-afd4-1f37fc7ced53"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
@@ -222,6 +234,9 @@
"Content-Length": [
"0"
],
+ "Content-Type": [
+ "text/plain; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -231,45 +246,47 @@
"Retry-After": [
"17"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
"x-ms-request-id": [
- "f9302104-9661-4242-9a66-6ca163229b2f"
+ "309a11c0-0648-4d33-9b00-4301d60c3cbe"
],
- "Cache-Control": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/e432f519-46ab-402a-be62-66ff6e1c1eb2?monitor=true&api-version=2015-06-15"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "f9302104-9661-4242-9a66-6ca163229b2f"
+ "308cfaa0-445c-4280-8b19-6f37a23c8f15"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023259Z:f9302104-9661-4242-9a66-6ca163229b2f"
+ "AUSTRALIAEAST:20180607T125620Z:308cfaa0-445c-4280-8b19-6f37a23c8f15"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:32:58 GMT"
+ "Thu, 07 Jun 2018 12:56:19 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/309a11c0-0648-4d33-9b00-4301d60c3cbe?monitor=true&api-version=2015-06-15"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/e432f519-46ab-402a-be62-66ff6e1c1eb2?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZTQzMmY1MTktNDZhYi00MDJhLWJlNjItNjZmZjZlMWMxZWIyP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/309a11c0-0648-4d33-9b00-4301d60c3cbe?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMzA5YTExYzAtMDY0OC00ZDMzLTliMDAtNDMwMWQ2MGMzY2JlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc26d88e-edfe-4fc5-891b-aacb8e82fcfa"
+ "f3b7dfe3-059a-43ab-ad78-045ed2d8c88b"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
@@ -280,6 +297,9 @@
"Content-Length": [
"0"
],
+ "Content-Type": [
+ "text/plain; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -289,54 +309,56 @@
"Retry-After": [
"17"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
- ],
"x-ms-request-id": [
- "e1f6147a-eb7f-4d2a-9e01-775be956150b"
- ],
- "Cache-Control": [
- "no-cache"
+ "35c1fc4c-4b13-4aa6-8b46-faf92b0d3526"
],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/e432f519-46ab-402a-be62-66ff6e1c1eb2?monitor=true&api-version=2015-06-15"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "e1f6147a-eb7f-4d2a-9e01-775be956150b"
+ "9c84ff25-552a-41de-8a61-2271677a2c10"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023259Z:e1f6147a-eb7f-4d2a-9e01-775be956150b"
+ "AUSTRALIAEAST:20180607T125621Z:9c84ff25-552a-41de-8a61-2271677a2c10"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:32:58 GMT"
+ "Thu, 07 Jun 2018 12:56:20 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/309a11c0-0648-4d33-9b00-4301d60c3cbe?monitor=true&api-version=2015-06-15"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/e432f519-46ab-402a-be62-66ff6e1c1eb2?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZTQzMmY1MTktNDZhYi00MDJhLWJlNjItNjZmZjZlMWMxZWIyP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/309a11c0-0648-4d33-9b00-4301d60c3cbe?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMzA5YTExYzAtMDY0OC00ZDMzLTliMDAtNDMwMWQ2MGMzY2JlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca335402-14eb-44cb-b6bb-9a20480e3853"
+ "eb4f6fb3-178f-4bf9-b46c-40e3f659d752"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "68"
+ "89"
],
"Content-Type": [
"application/json"
@@ -348,50 +370,52 @@
"no-cache"
],
"x-ms-request-id": [
- "6bfbf077-83fb-4e01-bd73-018c6446e52d"
+ "f4389216-f5dd-494b-8672-7963f9894c4e"
],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14998"
],
"x-ms-correlation-request-id": [
- "6bfbf077-83fb-4e01-bd73-018c6446e52d"
+ "3a03e330-3a72-4b82-9706-37ff8b7a2ba9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023316Z:6bfbf077-83fb-4e01-bd73-018c6446e52d"
+ "AUSTRALIAEAST:20180607T125638Z:3a03e330-3a72-4b82-9706-37ff8b7a2ba9"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:16 GMT"
+ "Thu, 07 Jun 2018 12:56:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg1175/providers/Microsoft.Storage/storageAccounts/azureblob01967/listKeys?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTE3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F6dXJlYmxvYjAxOTY3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg19773/providers/Microsoft.Storage/storageAccounts/azureblob013831/listKeys?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk3NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTM4MzEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fdb49394-eae7-46fc-b33e-55480892b71b"
+ "bd484270-80b1-443e-9965-c8fea78158a4"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"key1\": \"pxXWEDwFr7hNJr2zi/noAGEoMK/eX9kkIVC3PSAPnY6i/ffZfIK9JTbcenLNXG3I4xbtNUadWIbTKTaPEv4s7A==\",\r\n \"key2\": \"xvAB2gUrOLHMlM4Rbthv8L/dp74bMgUMF/7bzl2szPvXmEc5U13b32SxqHCEq+2HXDWwwdIpMZ4VtucocxVOFw==\"\r\n}",
+ "ResponseBody": "{\r\n \"key1\": \"Z5CWTVNBX8JfF7OFCASXQQzw2dZ8Ig0fkKwomyULH/LvQLG8x69QsytXXm5qJ/RSyTermX+G3WC8eaLuENHQdA==\",\r\n \"key2\": \"EoMGNfVn0/cBLacZtPcPLkjkqx70BNvn4VtEsCHhgzZnFsDJWhb62c+nHca8JoS0NGv60sXomQdxIrLTIcMTXw==\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "198"
+ "197"
],
"Content-Type": [
"application/json"
@@ -403,50 +427,52 @@
"no-cache"
],
"x-ms-request-id": [
- "412e855f-bf3f-4963-92a6-e70406c7d8d6"
- ],
- "Cache-Control": [
- "no-cache"
+ "a74d0b09-b1f1-40a4-9e6d-1d188326c1ce"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "412e855f-bf3f-4963-92a6-e70406c7d8d6"
+ "bf230be6-5845-493a-b997-5a897ffd4a25"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023316Z:412e855f-bf3f-4963-92a6-e70406c7d8d6"
+ "AUSTRALIAEAST:20180607T125638Z:bf230be6-5845-493a-b997-5a897ffd4a25"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:16 GMT"
+ "Thu, 07 Jun 2018 12:56:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg1175/providers/Microsoft.Storage/storageAccounts/azureblob01967?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTE3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2F6dXJlYmxvYjAxOTY3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg19773/providers/Microsoft.Storage/storageAccounts/azureblob013831?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk3NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTM4MzE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41490f95-f19b-43d9-8dac-fb307320323c"
+ "8fa4ade7-24ac-45fe-aff1-448460b7f93b"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg1175/providers/Microsoft.Storage/storageAccounts/azureblob01967\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"azureblob01967\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-12-07T02:32:59.0682402Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azureblob01967.blob.core.windows.net/\",\r\n \"file\": \"https://azureblob01967.file.core.windows.net/\",\r\n \"queue\": \"https://azureblob01967.queue.core.windows.net/\",\r\n \"table\": \"https://azureblob01967.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg19773/providers/Microsoft.Storage/storageAccounts/azureblob013831\",\r\n \"name\": \"azureblob013831\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-07T12:56:19.9871145Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azureblob013831.blob.core.windows.net/\",\r\n \"queue\": \"https://azureblob013831.queue.core.windows.net/\",\r\n \"table\": \"https://azureblob013831.table.core.windows.net/\",\r\n \"file\": \"https://azureblob013831.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "732"
+ "738"
],
"Content-Type": [
"application/json"
@@ -458,50 +484,61 @@
"no-cache"
],
"x-ms-request-id": [
- "9a422da8-b563-49ff-8449-fdc108913fc6"
- ],
- "Cache-Control": [
- "no-cache"
+ "554d4d5c-21ba-4e3c-9fa9-5b3164c0cce2"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14997"
],
"x-ms-correlation-request-id": [
- "9a422da8-b563-49ff-8449-fdc108913fc6"
+ "10e22112-2733-42e7-8611-a9dcc7d2c481"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023317Z:9a422da8-b563-49ff-8449-fdc108913fc6"
+ "AUSTRALIAEAST:20180607T125639Z:10e22112-2733-42e7-8611-a9dcc7d2c481"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:17 GMT"
+ "Thu, 07 Jun 2018 12:56:39 GMT"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4001?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDAwMT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9442?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTQ0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "a9d969b3-141c-4f16-9c00-259e8b537c1a"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001\",\r\n \"name\": \"ps4001\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442\",\r\n \"name\": \"ps9442\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -516,49 +553,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "152d3e2a-9585-4637-b7a6-f026fbd80099"
+ "a461fc26-d6f6-4881-88a3-9740edd0a838"
],
"x-ms-correlation-request-id": [
- "152d3e2a-9585-4637-b7a6-f026fbd80099"
+ "a461fc26-d6f6-4881-88a3-9740edd0a838"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023318Z:152d3e2a-9585-4637-b7a6-f026fbd80099"
+ "AUSTRALIAEAST:20180607T125643Z:a461fc26-d6f6-4881-88a3-9740edd0a838"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:17 GMT"
+ "Thu, 07 Jun 2018 12:56:43 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dcfaeba1-3ee9-4656-bfaa-5c13369ca919"
+ "2f77c039-124b-4f41-ba97-24a0768720af"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4927' under resource group 'ps4001' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4696' under resource group 'ps9442' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -576,46 +616,49 @@
"gateway"
],
"x-ms-request-id": [
- "a032b140-9c58-4de2-b027-31c06d9d523d"
+ "37b46b53-394e-44e2-95ed-b302f7b899c1"
],
"x-ms-correlation-request-id": [
- "a032b140-9c58-4de2-b027-31c06d9d523d"
+ "37b46b53-394e-44e2-95ed-b302f7b899c1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023318Z:a032b140-9c58-4de2-b027-31c06d9d523d"
+ "AUSTRALIAEAST:20180607T125645Z:37b46b53-394e-44e2-95ed-b302f7b899c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:17 GMT"
+ "Thu, 07 Jun 2018 12:56:44 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d1241915-a70c-47a5-a64f-68229f2ac58f"
+ "42a855a9-fe69-494b-9325-6fbf0326da68"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4927' under resource group 'ps4001' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4696' under resource group 'ps9442' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -633,46 +676,49 @@
"gateway"
],
"x-ms-request-id": [
- "c9c2e404-21a2-47e7-a9a0-8ed5f343c8d1"
+ "7d7633fd-9c2f-4c1f-b0f3-b0404bf308ef"
],
"x-ms-correlation-request-id": [
- "c9c2e404-21a2-47e7-a9a0-8ed5f343c8d1"
+ "7d7633fd-9c2f-4c1f-b0f3-b0404bf308ef"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023434Z:c9c2e404-21a2-47e7-a9a0-8ed5f343c8d1"
+ "AUSTRALIAEAST:20180607T125812Z:7d7633fd-9c2f-4c1f-b0f3-b0404bf308ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:34 GMT"
+ "Thu, 07 Jun 2018 12:58:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "039a8ec6-583c-4275-97aa-28bcca0ee984"
+ "886bbd04-64a1-4ea5-9ec0-5ddbd6d74879"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4927' under resource group 'ps4001' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4696' under resource group 'ps9442' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -690,43 +736,46 @@
"gateway"
],
"x-ms-request-id": [
- "614fce87-d9c9-4192-8723-8fdc73e97cfd"
+ "87d4a930-6bbf-4c0b-a6b1-cf4810f9b058"
],
"x-ms-correlation-request-id": [
- "614fce87-d9c9-4192-8723-8fdc73e97cfd"
+ "87d4a930-6bbf-4c0b-a6b1-cf4810f9b058"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023434Z:614fce87-d9c9-4192-8723-8fdc73e97cfd"
+ "AUSTRALIAEAST:20180607T125812Z:87d4a930-6bbf-4c0b-a6b1-cf4810f9b058"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:34 GMT"
+ "Thu, 07 Jun 2018 12:58:12 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:40.0291735Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:58:18.9004348Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -738,31 +787,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d6d84324-775d-4ca6-84a7-8cab4c9cf7fc"
+ "926071a6-00b2-48fa-a45b-2ffeda077594"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14989"
],
"x-ms-correlation-request-id": [
- "87c1b932-4c21-41eb-9a25-62bc3f97d875"
+ "b37d995c-f4e7-4b0a-bda3-80eb204556be"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023509Z:87c1b932-4c21-41eb-9a25-62bc3f97d875"
+ "AUSTRALIAEAST:20180607T125853Z:b37d995c-f4e7-4b0a-bda3-80eb204556be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:09 GMT"
+ "Thu, 07 Jun 2018 12:58:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -777,28 +823,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70b816dd-1b5d-42db-80d7-7e57cd547daa"
+ "a2c1ac84-fcd7-463b-b3fb-2f28945231a5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:40.0291735Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:58:18.9004348Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -810,31 +856,28 @@
"no-cache"
],
"x-ms-request-id": [
- "360d1516-1d14-455d-8daa-cacd9ef25ed6"
+ "8a060701-1d77-4b72-8d03-adc30b34825a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14988"
],
"x-ms-correlation-request-id": [
- "578c693f-61a2-4e96-a60d-00f959f50b9e"
+ "d5b7715c-4b6c-45d8-b1ea-8bdc165ff8b0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023510Z:578c693f-61a2-4e96-a60d-00f959f50b9e"
+ "AUSTRALIAEAST:20180607T125854Z:d5b7715c-4b6c-45d8-b1ea-8bdc165ff8b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:10 GMT"
+ "Thu, 07 Jun 2018 12:58:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -849,28 +892,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc3459b8-39dd-4c9b-bb61-6af19ea496d9"
+ "6a00efd5-a673-49f2-a5c1-9a3d75f42157"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:40.0291735Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:58:18.9004348Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -882,31 +925,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2525ca32-051e-4db8-a57d-996c06dcb0a7"
+ "b3b84cf2-58e9-484e-9cbb-c8cb76328cf0"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14987"
],
"x-ms-correlation-request-id": [
- "6a6ccda0-e71f-4d48-94dd-3bcdbab83353"
+ "1688199a-38f6-4322-93ab-ec0889364b04"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023511Z:6a6ccda0-e71f-4d48-94dd-3bcdbab83353"
+ "AUSTRALIAEAST:20180607T125856Z:1688199a-38f6-4322-93ab-ec0889364b04"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:10 GMT"
+ "Thu, 07 Jun 2018 12:58:55 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -921,28 +961,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "621fd30e-6523-4c12-80ad-1feec076b0c1"
+ "78a2c464-7377-429d-837f-02dc63bceb9c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:40.0291735Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:58:18.9004348Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -954,31 +994,28 @@
"no-cache"
],
"x-ms-request-id": [
- "51b84512-8704-4691-b6a4-916f6e9e7b14"
+ "059b8ea2-c85b-4880-a1f6-0db23f5d05a4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14985"
],
"x-ms-correlation-request-id": [
- "c8013b57-87b9-4dc1-a7f0-d8ec4d716bd3"
+ "17531bd9-5936-4c48-8f50-6d0f5f9daf37"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023512Z:c8013b57-87b9-4dc1-a7f0-d8ec4d716bd3"
+ "AUSTRALIAEAST:20180607T125858Z:17531bd9-5936-4c48-8f50-6d0f5f9daf37"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:12 GMT"
+ "Thu, 07 Jun 2018 12:58:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -993,28 +1030,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "790c52c9-d19e-47a6-b01a-c04b1aeca950"
+ "77de0fc7-9549-446b-9b43-ed83253095b8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:40.0291735Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:58:18.9004348Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -1026,31 +1063,28 @@
"no-cache"
],
"x-ms-request-id": [
- "489a045d-ef4a-4ba8-abd6-c340415de185"
+ "229df563-9f26-4a4c-9bc3-13bf112ca02f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14984"
],
"x-ms-correlation-request-id": [
- "0dd4c616-ff75-4ece-8c55-989a9048fd2e"
+ "b28f23d3-6dc0-4dab-b0c5-09c9a24bfe7a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023513Z:0dd4c616-ff75-4ece-8c55-989a9048fd2e"
+ "AUSTRALIAEAST:20180607T125900Z:b28f23d3-6dc0-4dab-b0c5-09c9a24bfe7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:13 GMT"
+ "Thu, 07 Jun 2018 12:58:59 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1065,28 +1099,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d8a7e97-09e5-4f90-8681-f4f94308b500"
+ "205c8c54-59c7-4a06-a520-24542082ca7e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:40.0291735Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:58:18.9004348Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -1098,31 +1132,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f49425d8-3523-410d-acca-d48903992aaa"
+ "59666332-6872-4926-a595-f6ba2fae053e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14983"
],
"x-ms-correlation-request-id": [
- "4e6af1de-57f7-4953-b013-dc8b0e521375"
+ "17ed234c-1a45-4097-bc15-81c3c9a98c2e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023513Z:4e6af1de-57f7-4953-b013-dc8b0e521375"
+ "AUSTRALIAEAST:20180607T125901Z:17ed234c-1a45-4097-bc15-81c3c9a98c2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:12 GMT"
+ "Thu, 07 Jun 2018 12:59:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1137,28 +1168,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77cb3c5c-dcee-43d0-84d8-e6dcdaaf28ba"
+ "1afb7497-6bb9-40a7-8f65-3ed018ea5c8e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps1137\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1305"
+ "1326"
],
"Content-Type": [
"application/json"
@@ -1170,31 +1201,28 @@
"no-cache"
],
"x-ms-request-id": [
- "490707df-9e9f-4582-90a7-045fe8994614"
+ "f61b70bd-2e7b-4b77-96e2-ff13664f3d40"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14978"
],
"x-ms-correlation-request-id": [
- "85c9d3dd-0aee-4e2f-afd7-1db36d433417"
+ "0d1d04c2-d75b-4ce3-987e-4d3b5419dff1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023520Z:85c9d3dd-0aee-4e2f-afd7-1db36d433417"
+ "AUSTRALIAEAST:20180607T125913Z:0d1d04c2-d75b-4ce3-987e-4d3b5419dff1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:20 GMT"
+ "Thu, 07 Jun 2018 12:59:13 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1209,28 +1237,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ef38c86-3034-49e4-b048-7347ab9aed7e"
+ "88f37015-98c7-4a62-9c7f-e61838f0a1bd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps1137\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1305"
+ "1326"
],
"Content-Type": [
"application/json"
@@ -1242,31 +1270,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1865e652-2e15-44d7-8f62-e7a13075712a"
+ "9072e1ef-6859-4daf-8602-a1137d7d57e8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14974"
],
"x-ms-correlation-request-id": [
- "f7c0cc03-aa8a-494e-813b-bf0e16057f9f"
+ "f94c33ae-82fc-423f-8105-a244001b545b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023524Z:f7c0cc03-aa8a-494e-813b-bf0e16057f9f"
+ "AUSTRALIAEAST:20180607T125919Z:f94c33ae-82fc-423f-8105-a244001b545b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:23 GMT"
+ "Thu, 07 Jun 2018 12:59:19 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1281,28 +1306,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1b1fa74-359d-4e22-9657-f1f421e33c25"
+ "93f98378-61da-48fe-9cb6-761985bf6825"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1238"
+ "1259"
],
"Content-Type": [
"application/json"
@@ -1314,31 +1339,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1df8b531-e277-4338-9b19-0d8ce6d037c7"
+ "6b25009f-42d6-4b96-aed4-3a842db30066"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14969"
],
"x-ms-correlation-request-id": [
- "2625f63f-1ec0-4686-b354-15b9823337a4"
+ "17091b4d-247b-46c1-b0f4-1e9f52defb24"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023530Z:2625f63f-1ec0-4686-b354-15b9823337a4"
+ "AUSTRALIAEAST:20180607T125927Z:17091b4d-247b-46c1-b0f4-1e9f52defb24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:29 GMT"
+ "Thu, 07 Jun 2018 12:59:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1353,28 +1375,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f337295-a6a7-4251-8a9f-7c1aeb1dbd3e"
+ "a7f3d63c-aec8-46b6-83b2-b6f0d7cf4ed2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob01967\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob013831\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1306"
+ "1328"
],
"Content-Type": [
"application/json"
@@ -1386,31 +1408,28 @@
"no-cache"
],
"x-ms-request-id": [
- "dccc57fe-1344-486e-9945-167717d2edae"
+ "02e60f84-98de-4485-9986-0bc0593e101c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14966"
],
"x-ms-correlation-request-id": [
- "e15d87de-df67-4092-b662-2a5c1f631f62"
+ "a9bc8eeb-e6e9-4c9b-bff6-51b206b5bad0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023534Z:e15d87de-df67-4092-b662-2a5c1f631f62"
+ "AUSTRALIAEAST:20180607T125934Z:a9bc8eeb-e6e9-4c9b-bff6-51b206b5bad0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:33 GMT"
+ "Thu, 07 Jun 2018 12:59:33 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1425,28 +1444,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d519187-7539-40c0-8f6b-787ce23ce297"
+ "9748227d-9353-4da7-bd33-aef339eb3c7d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob01967\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob013831\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1306"
+ "1328"
],
"Content-Type": [
"application/json"
@@ -1458,31 +1477,28 @@
"no-cache"
],
"x-ms-request-id": [
- "56d3f7d5-18af-48ab-8f6c-2735dec55148"
+ "697eccda-1fde-44a2-9cfc-6de09d5c639a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14962"
],
"x-ms-correlation-request-id": [
- "2f913348-473f-4010-a4a4-609070eb698b"
+ "e9cbd7bf-1349-4ba1-99d6-1360629f0cea"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023537Z:2f913348-473f-4010-a4a4-609070eb698b"
+ "AUSTRALIAEAST:20180607T125939Z:e9cbd7bf-1349-4ba1-99d6-1360629f0cea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:36 GMT"
+ "Thu, 07 Jun 2018 12:59:39 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1497,28 +1513,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "102e428d-ec2a-4a80-a819-70c5bd008415"
+ "5a473647-4bca-44f7-a50e-2b6c6223bb3c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1238"
+ "1259"
],
"Content-Type": [
"application/json"
@@ -1530,31 +1546,28 @@
"no-cache"
],
"x-ms-request-id": [
- "65ff724b-0fe9-4aeb-92d2-db240b2e77e3"
+ "57c96c1d-9894-4deb-8362-4f42cecb066a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14957"
],
"x-ms-correlation-request-id": [
- "64a0a588-daa6-4d14-a8e0-33392f1fd64e"
+ "0f090af8-0538-4207-aa3c-eb1c204e86a1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023541Z:64a0a588-daa6-4d14-a8e0-33392f1fd64e"
+ "AUSTRALIAEAST:20180607T125948Z:0f090af8-0538-4207-aa3c-eb1c204e86a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:40 GMT"
+ "Thu, 07 Jun 2018 12:59:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1569,28 +1582,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37586a85-13be-4dd0-9d3b-1482c2cfc2c0"
+ "a82204f1-2e35-494a-acc5-71433094e309"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1238"
+ "1259"
],
"Content-Type": [
"application/json"
@@ -1602,31 +1615,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1f3673bb-5b95-40c2-9bc5-133963d42478"
+ "b674fedd-8e2b-4247-91ff-67178e10d0f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14956"
],
"x-ms-correlation-request-id": [
- "c27f7a47-14be-46f3-b8b9-5afb2a22cf97"
+ "6a9a65f7-f48b-44a9-8382-971eaa74e9a8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023544Z:c27f7a47-14be-46f3-b8b9-5afb2a22cf97"
+ "AUSTRALIAEAST:20180607T125950Z:6a9a65f7-f48b-44a9-8382-971eaa74e9a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:43 GMT"
+ "Thu, 07 Jun 2018 12:59:49 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1641,25 +1651,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "329f16fe-131f-4d44-905f-7162f926a224"
+ "3dcd4f31-5868-4b9e-a35e-081c742dc4de"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4927' under resource group 'ps4001' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4696' under resource group 'ps9442' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1677,46 +1687,49 @@
"gateway"
],
"x-ms-request-id": [
- "681a379d-1b48-4bbe-ac08-b00aa3d8415a"
+ "41712f8a-1de3-4485-a73c-de69e4aaafef"
],
"x-ms-correlation-request-id": [
- "681a379d-1b48-4bbe-ac08-b00aa3d8415a"
+ "41712f8a-1de3-4485-a73c-de69e4aaafef"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023548Z:681a379d-1b48-4bbe-ac08-b00aa3d8415a"
+ "AUSTRALIAEAST:20180607T125955Z:41712f8a-1de3-4485-a73c-de69e4aaafef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:48 GMT"
+ "Thu, 07 Jun 2018 12:59:55 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "978a361a-0457-43b6-b2ef-593c7bf66f41"
+ "9def832b-4b8c-47fd-a8aa-d446b0916b8d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4927' under resource group 'ps4001' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4696' under resource group 'ps9442' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1734,22 +1747,25 @@
"gateway"
],
"x-ms-request-id": [
- "cf89d149-3e6b-4532-b596-d676d4b09350"
+ "d2dc866d-8f75-418f-ad32-877d8c21b2f3"
],
"x-ms-correlation-request-id": [
- "cf89d149-3e6b-4532-b596-d676d4b09350"
+ "d2dc866d-8f75-418f-ad32-877d8c21b2f3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023548Z:cf89d149-3e6b-4532-b596-d676d4b09350"
+ "AUSTRALIAEAST:20180607T125955Z:d2dc866d-8f75-418f-ad32-877d8c21b2f3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:48 GMT"
+ "Thu, 07 Jun 2018 12:59:55 GMT"
]
},
"StatusCode": 404
@@ -1761,25 +1777,25 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11c5aa4a-27aa-411e-8418-cb4ad6cd5bbe"
+ "0f13b6dd-9a14-40ee-ac8f-d3e1a7499372"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "528"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1787,41 +1803,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "474e63f7-a7a5-4839-95e8-e6fbff55d648"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "86824ec5-bfbb-43cb-bf1a-d68c9a56f1eb"
],
"x-ms-correlation-request-id": [
- "db853ffc-0fb5-44ea-baf2-e30e56d68d76"
+ "86824ec5-bfbb-43cb-bf1a-d68c9a56f1eb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023319Z:db853ffc-0fb5-44ea-baf2-e30e56d68d76"
+ "AUSTRALIAEAST:20180607T125645Z:86824ec5-bfbb-43cb-bf1a-d68c9a56f1eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:18 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:56:45 GMT"
]
},
"StatusCode": 200
@@ -1833,22 +1837,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14904495-351d-4614-95cb-801040fa6a11"
+ "049868e8-a3a4-4a0a-b182-2cc00917526c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:40.0291735Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:58:18.9004348Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "499"
],
"Content-Type": [
"application/json"
@@ -1860,31 +1864,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f6cef210-8351-4e7a-8cc7-fde9360d9e9c"
+ "79c2694c-345f-4fe7-81b9-6235c22f9f05"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14986"
],
"x-ms-correlation-request-id": [
- "ed7252ac-7400-410d-ad44-43e879dc3874"
+ "a6b7dce6-1773-4aaf-bdcb-0e5faacb701f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023512Z:ed7252ac-7400-410d-ad44-43e879dc3874"
+ "AUSTRALIAEAST:20180607T125857Z:a6b7dce6-1773-4aaf-bdcb-0e5faacb701f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:11 GMT"
+ "Thu, 07 Jun 2018 12:58:56 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1905,22 +1906,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "115c512e-9b82-428e-a5d3-79095b811128"
+ "9f42abfe-dcd6-4902-a6e6-4e92e5ef739b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -1932,31 +1933,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9ebbd144-b1c9-4afb-a1bf-0e1b1a708c00"
+ "8d2b7d1e-5172-49d6-af1b-8dbce3adc33b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14981"
],
"x-ms-correlation-request-id": [
- "697bed38-50e5-426d-b7ab-2a0c25910efa"
+ "faf89ea4-4d47-4b48-8147-de537415d774"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023517Z:697bed38-50e5-426d-b7ab-2a0c25910efa"
+ "AUSTRALIAEAST:20180607T125907Z:faf89ea4-4d47-4b48-8147-de537415d774"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:16 GMT"
+ "Thu, 07 Jun 2018 12:59:06 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1977,22 +1975,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d6e410d-4a8f-414f-b290-b023950abd32"
+ "8deb1215-4d8e-4fa3-bcb7-2fcc4bf78d08"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2004,31 +2002,28 @@
"no-cache"
],
"x-ms-request-id": [
- "858d3b94-440d-4d58-9e57-ed322c4e87ef"
+ "ea0eb9cc-a081-4a9f-b332-05a2b1a9eca0"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14980"
],
"x-ms-correlation-request-id": [
- "2376d1e1-d1d3-412c-bf42-9b7a37bf60a8"
+ "d1345781-3366-43f0-9139-c19bafe12900"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023518Z:2376d1e1-d1d3-412c-bf42-9b7a37bf60a8"
+ "AUSTRALIAEAST:20180607T125909Z:d1345781-3366-43f0-9139-c19bafe12900"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:18 GMT"
+ "Thu, 07 Jun 2018 12:59:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2049,22 +2044,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "328c0c01-28f4-4b47-af03-6ef75f4c89ad"
+ "38ad35dc-c6aa-4506-a65a-242ebadb1186"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2076,31 +2071,28 @@
"no-cache"
],
"x-ms-request-id": [
- "23e7f3e0-2af8-4505-be51-8f5c4d0d8392"
+ "daf0f214-ba0d-4744-93d7-b52ed05f2dd6"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14979"
],
"x-ms-correlation-request-id": [
- "b89612b1-9565-412e-a4fa-20a9252247be"
+ "4e16c0e7-1f78-4ea4-bfcb-db0072139467"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023520Z:b89612b1-9565-412e-a4fa-20a9252247be"
+ "AUSTRALIAEAST:20180607T125912Z:4e16c0e7-1f78-4ea4-bfcb-db0072139467"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:19 GMT"
+ "Thu, 07 Jun 2018 12:59:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2121,22 +2113,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5800f05-a6c6-4c86-a3d3-18cb8a14231b"
+ "c5fcafa1-8e21-4527-af2d-5652c9ea20a7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2148,31 +2140,28 @@
"no-cache"
],
"x-ms-request-id": [
- "11961a1c-87ca-4e8e-af47-e167f0867ed6"
+ "8defb9a9-dab6-40dd-9ad9-3c46c4fb65a4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14977"
],
"x-ms-correlation-request-id": [
- "bc6b5394-87e0-480f-9aff-47f25211dcb9"
+ "c1606822-74e3-45ec-ba1b-0616c034907a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023521Z:bc6b5394-87e0-480f-9aff-47f25211dcb9"
+ "AUSTRALIAEAST:20180607T125915Z:c1606822-74e3-45ec-ba1b-0616c034907a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:21 GMT"
+ "Thu, 07 Jun 2018 12:59:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2193,22 +2182,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da2c95c9-6737-4c7d-8d4d-30412687348a"
+ "6eb73567-e5f5-445a-adc2-e285b110c1fa"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2220,31 +2209,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1e4ea083-9efe-4370-86a1-4b74b8f6f12a"
+ "e84e32a7-0412-41f8-ae2b-e542f4bab5b5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14975"
],
"x-ms-correlation-request-id": [
- "abb6f64d-2f8a-4dfc-9d7f-605ecc4b5f33"
+ "191dc4c3-fb7c-4756-9b4e-f3c0be1f8a5f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023523Z:abb6f64d-2f8a-4dfc-9d7f-605ecc4b5f33"
+ "AUSTRALIAEAST:20180607T125917Z:191dc4c3-fb7c-4756-9b4e-f3c0be1f8a5f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:22 GMT"
+ "Thu, 07 Jun 2018 12:59:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2265,22 +2251,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2d22330-b170-45d4-a0e4-6d27e5da99f0"
+ "d14a4cac-9193-474e-9fe9-082ca778e5b8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2292,31 +2278,28 @@
"no-cache"
],
"x-ms-request-id": [
- "eabaa7ae-c336-4fc4-96f0-5751d4aa8162"
+ "8f5ba4dd-2d4f-4693-b935-0524501bd67d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14971"
],
"x-ms-correlation-request-id": [
- "2311544f-a230-4155-ad89-35942a1796cc"
+ "522b0687-815e-4b71-b241-f2a661a0f403"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023526Z:2311544f-a230-4155-ad89-35942a1796cc"
+ "AUSTRALIAEAST:20180607T125923Z:522b0687-815e-4b71-b241-f2a661a0f403"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:25 GMT"
+ "Thu, 07 Jun 2018 12:59:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2337,22 +2320,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8b30cd8-f34b-42a1-9830-e99a7edf44e4"
+ "d0e8a4e6-50f1-49e6-b6ae-7d919c9a4170"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2364,31 +2347,28 @@
"no-cache"
],
"x-ms-request-id": [
- "02ecad79-b9be-4069-b269-6d22e51fbc5c"
+ "0a8c9e6e-aa9c-4c7b-a490-ad19dadcbe33"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14970"
],
"x-ms-correlation-request-id": [
- "a8d04574-3d26-494c-a850-178f71d9dc26"
+ "2215f0e3-99b4-4bad-8bde-471663eedb37"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023529Z:a8d04574-3d26-494c-a850-178f71d9dc26"
+ "AUSTRALIAEAST:20180607T125926Z:2215f0e3-99b4-4bad-8bde-471663eedb37"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:28 GMT"
+ "Thu, 07 Jun 2018 12:59:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2409,22 +2389,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97fdfb35-208f-4c9a-9fb7-9953e42aa801"
+ "1439216b-2b56-44b0-85f9-72b4bce32a8d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2436,31 +2416,28 @@
"no-cache"
],
"x-ms-request-id": [
- "16296e65-245a-44a1-9d6a-c6b1db8ee299"
+ "6f976bbe-c87c-4386-a7e9-1a161f397087"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14968"
],
"x-ms-correlation-request-id": [
- "a7b32165-9bfc-4907-9df4-f2f67186b70f"
+ "8c004a66-bc8b-4b02-af0c-62bebc39f173"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023530Z:a7b32165-9bfc-4907-9df4-f2f67186b70f"
+ "AUSTRALIAEAST:20180607T125929Z:8c004a66-bc8b-4b02-af0c-62bebc39f173"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:30 GMT"
+ "Thu, 07 Jun 2018 12:59:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2481,22 +2458,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54bcc9eb-0656-48af-a414-8a007c88cc22"
+ "7e2d46ee-c2bf-4ed4-bb57-b1de7d36a2ac"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2508,31 +2485,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a92e1fcd-4e41-49cb-9904-2bd3a9164dae"
+ "d0a99202-6755-4899-9446-58f6f33f4861"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14967"
],
"x-ms-correlation-request-id": [
- "8cd16819-82fa-434d-b5b9-be4a58306861"
+ "24e814ed-ad46-4067-9fa5-ca235d5253ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023533Z:8cd16819-82fa-434d-b5b9-be4a58306861"
+ "AUSTRALIAEAST:20180607T125933Z:24e814ed-ad46-4067-9fa5-ca235d5253ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:32 GMT"
+ "Thu, 07 Jun 2018 12:59:32 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2553,22 +2527,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec077b17-def9-4e4c-b6af-f4444692a5f5"
+ "782abb6e-60a1-4892-a20c-0f102c1afaca"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2580,31 +2554,28 @@
"no-cache"
],
"x-ms-request-id": [
- "22cdb6ca-0678-4ad3-b7e0-1397d1c32dd7"
+ "603e346e-8105-43d9-a809-54fdb8a99d0c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14965"
],
"x-ms-correlation-request-id": [
- "e9acb408-36d5-4dec-8f55-6eef775cf5e2"
+ "66df621b-7163-4579-9069-d94c4de0f84d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023534Z:e9acb408-36d5-4dec-8f55-6eef775cf5e2"
+ "AUSTRALIAEAST:20180607T125935Z:66df621b-7163-4579-9069-d94c4de0f84d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:34 GMT"
+ "Thu, 07 Jun 2018 12:59:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2625,22 +2596,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63e4e538-95ba-4b65-ba3a-0d8faef0dc00"
+ "6a5b7ff1-4c8d-4bb7-939d-5b8f71709b66"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2652,31 +2623,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2ea28c47-db0f-4224-a37e-f8acb870088f"
+ "7ebe5536-07ec-4d6c-8f17-c29d8d7d6cbe"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14963"
],
"x-ms-correlation-request-id": [
- "3480a945-27d9-42d7-9781-9a1569412f47"
+ "e2a0acb9-3dec-44a2-9a95-e1b511c2369e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023536Z:3480a945-27d9-42d7-9781-9a1569412f47"
+ "AUSTRALIAEAST:20180607T125938Z:e2a0acb9-3dec-44a2-9a95-e1b511c2369e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:35 GMT"
+ "Thu, 07 Jun 2018 12:59:37 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2697,22 +2665,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01d3e437-59d7-47ff-bd7c-123404201fe4"
+ "e4990a9e-0cdf-489d-8dd1-d92afab47179"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2724,31 +2692,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4fcdbfd4-b902-49a3-962d-8a74a35b049f"
+ "f5bcd848-6be9-4928-b909-e375d44954df"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14959"
],
"x-ms-correlation-request-id": [
- "6a6394eb-a99f-4db0-88a5-ef8e926eb4f1"
+ "840f403b-9ba6-426b-ac5a-40000ac67395"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023539Z:6a6394eb-a99f-4db0-88a5-ef8e926eb4f1"
+ "AUSTRALIAEAST:20180607T125944Z:840f403b-9ba6-426b-ac5a-40000ac67395"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:38 GMT"
+ "Thu, 07 Jun 2018 12:59:43 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2769,22 +2734,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57f60f69-10d6-479c-817b-d0db530cdda2"
+ "320e408a-4387-4670-a412-3932f8b35acf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1040"
+ "521"
],
"Content-Type": [
"application/json"
@@ -2796,31 +2761,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4f2c8004-afd4-4ff5-a560-5ee925704014"
+ "03362778-e08e-4774-916d-6d1c6cfffe91"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14958"
],
"x-ms-correlation-request-id": [
- "a07f292c-782a-45a4-af48-db17ca4a6732"
+ "50ff75a4-6858-4a88-b8b2-280cb074aa7e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023540Z:a07f292c-782a-45a4-af48-db17ca4a6732"
+ "AUSTRALIAEAST:20180607T125947Z:50ff75a4-6858-4a88-b8b2-280cb074aa7e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:40 GMT"
+ "Thu, 07 Jun 2018 12:59:47 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2835,25 +2797,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NjYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzODg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "468a1168-6494-47c5-99f4-da256cb62237"
+ "7df82054-df89-4371-a844-fbc274fa4def"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7661' under resource group 'ps4001' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps3888' under resource group 'ps9442' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -2871,43 +2833,46 @@
"gateway"
],
"x-ms-request-id": [
- "8a8702ce-cf57-4197-92cf-b81c9a459b42"
+ "dd6f3b2a-45aa-417d-a314-1c218b382773"
],
"x-ms-correlation-request-id": [
- "8a8702ce-cf57-4197-92cf-b81c9a459b42"
+ "dd6f3b2a-45aa-417d-a314-1c218b382773"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023319Z:8a8702ce-cf57-4197-92cf-b81c9a459b42"
+ "AUSTRALIAEAST:20180607T125647Z:dd6f3b2a-45aa-417d-a314-1c218b382773"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:19 GMT"
+ "Thu, 07 Jun 2018 12:56:46 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NjYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzODg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7661.azuredatalakestore.net\",\r\n \"accountId\": \"3dcacea0-5dab-4fda-a633-ab7cd4c80597\",\r\n \"creationTime\": \"2017-12-07T02:33:26.0465188Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:33:26.0465188Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"26ed713d-0e8f-4859-b2e9-01d2a6642487\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661\",\r\n \"name\": \"ps7661\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3888.azuredatalakestore.net\",\r\n \"accountId\": \"fdb25920-b0f9-4e1c-90cf-db824ea56732\",\r\n \"creationTime\": \"2018-06-07T12:56:55.1115087Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:56:55.1115087Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a7bdd5f8-21e5-429c-927e-f514542ec9be\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888\",\r\n \"name\": \"ps3888\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -2919,31 +2884,28 @@
"no-cache"
],
"x-ms-request-id": [
- "cf9e243d-ca0c-42b5-b4f8-3160f54bb9a9"
+ "39847e10-6f31-4581-986f-30091246e00f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14990"
],
"x-ms-correlation-request-id": [
- "5066a30f-aef4-4aad-bf42-b75772ec6783"
+ "b0a28cd7-654b-48c4-a61a-2a5f10b2481f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023357Z:5066a30f-aef4-4aad-bf42-b75772ec6783"
+ "AUSTRALIAEAST:20180607T125730Z:b0a28cd7-654b-48c4-a61a-2a5f10b2481f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:56 GMT"
+ "Thu, 07 Jun 2018 12:57:29 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2958,28 +2920,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NjYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzODg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15d7bbd9-ea72-4f3f-884f-603963ee1dc1"
+ "f34dc272-c470-4dfa-b7bb-f474302bd379"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7661.azuredatalakestore.net\",\r\n \"accountId\": \"3dcacea0-5dab-4fda-a633-ab7cd4c80597\",\r\n \"creationTime\": \"2017-12-07T02:33:26.0465188Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:33:26.0465188Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"26ed713d-0e8f-4859-b2e9-01d2a6642487\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661\",\r\n \"name\": \"ps7661\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3888.azuredatalakestore.net\",\r\n \"accountId\": \"fdb25920-b0f9-4e1c-90cf-db824ea56732\",\r\n \"creationTime\": \"2018-06-07T12:56:55.1115087Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:56:55.1115087Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a7bdd5f8-21e5-429c-927e-f514542ec9be\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888\",\r\n \"name\": \"ps3888\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -2991,31 +2953,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1b75a48f-1f88-4d66-b329-947411466442"
+ "421c2a5a-86a2-4e17-884d-46977cd4b18e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14984"
],
"x-ms-correlation-request-id": [
- "bea68585-0cac-49f8-92d8-6e7d0511132e"
+ "b18ebd67-3dd6-4b7a-8379-1c7b294e20e8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023549Z:bea68585-0cac-49f8-92d8-6e7d0511132e"
+ "AUSTRALIAEAST:20180607T125957Z:b18ebd67-3dd6-4b7a-8379-1c7b294e20e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:48 GMT"
+ "Thu, 07 Jun 2018 12:59:57 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3030,34 +2989,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NjYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzODg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "e83fdd6c-7940-4155-a1f9-025b5dba117f"
+ "fdd3d0ba-96d5-46e3-97a8-1a80ceedf147"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3dcacea0-5dab-4fda-a633-ab7cd4c80597\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661\",\r\n \"name\": \"ps7661\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fdb25920-b0f9-4e1c-90cf-db824ea56732\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888\",\r\n \"name\": \"ps3888\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -3072,37 +3031,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3dcacea0-5dab-4fda-a633-ab7cd4c805970?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/fdb25920-b0f9-4e1c-90cf-db824ea567320?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "1a3b2938-96f6-4458-8259-94b314c32541"
+ "66d22f35-6645-42af-9f12-4e4fe26a9503"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "79c4e2fb-bf19-4b8e-9e6f-06fd99ea903b"
+ "f4903515-cad9-4a17-80a0-d491eb8a2ca9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023324Z:79c4e2fb-bf19-4b8e-9e6f-06fd99ea903b"
+ "AUSTRALIAEAST:20180607T125655Z:f4903515-cad9-4a17-80a0-d491eb8a2ca9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:23 GMT"
+ "Thu, 07 Jun 2018 12:56:54 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3117,13 +3073,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3dcacea0-5dab-4fda-a633-ab7cd4c805970?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkY2FjZWEwLTVkYWItNGZkYS1hNjMzLWFiN2NkNGM4MDU5NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/fdb25920-b0f9-4e1c-90cf-db824ea567320?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2ZkYjI1OTIwLWIwZjktNGUxYy05MGNmLWRiODI0ZWE1NjczMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3144,31 +3100,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8f939f94-1837-40b9-b4d5-c72cb9b55f54"
+ "6a35442c-f290-4d8a-9313-4dedd996c423"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14993"
],
"x-ms-correlation-request-id": [
- "d1bc2117-caed-4f0a-83cb-caad7b4273fd"
+ "dd3a6151-9ab3-42fb-89d3-e7aee3218c1f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023335Z:d1bc2117-caed-4f0a-83cb-caad7b4273fd"
+ "AUSTRALIAEAST:20180607T125706Z:dd3a6151-9ab3-42fb-89d3-e7aee3218c1f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:34 GMT"
+ "Thu, 07 Jun 2018 12:57:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3183,13 +3136,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3dcacea0-5dab-4fda-a633-ab7cd4c805970?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkY2FjZWEwLTVkYWItNGZkYS1hNjMzLWFiN2NkNGM4MDU5NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/fdb25920-b0f9-4e1c-90cf-db824ea567320?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2ZkYjI1OTIwLWIwZjktNGUxYy05MGNmLWRiODI0ZWE1NjczMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3210,31 +3163,28 @@
"no-cache"
],
"x-ms-request-id": [
- "57dc0ab0-c886-4833-b12c-57ef11881fb2"
+ "9bfa3b92-66fc-4f3f-9046-25ca35d13521"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14992"
],
"x-ms-correlation-request-id": [
- "3af8d9ea-55f4-4e70-9291-1d9e954acd19"
+ "2158eeed-2cac-4756-89ab-4e92ea5fb712"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023345Z:3af8d9ea-55f4-4e70-9291-1d9e954acd19"
+ "AUSTRALIAEAST:20180607T125717Z:2158eeed-2cac-4756-89ab-4e92ea5fb712"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:45 GMT"
+ "Thu, 07 Jun 2018 12:57:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3249,13 +3199,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3dcacea0-5dab-4fda-a633-ab7cd4c805970?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkY2FjZWEwLTVkYWItNGZkYS1hNjMzLWFiN2NkNGM4MDU5NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/fdb25920-b0f9-4e1c-90cf-db824ea567320?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2ZkYjI1OTIwLWIwZjktNGUxYy05MGNmLWRiODI0ZWE1NjczMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3276,31 +3226,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9289064d-7d86-4e38-88dc-30934caa0398"
+ "8a82f3fa-ccf9-4a12-a006-48895e71c8f2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14991"
],
"x-ms-correlation-request-id": [
- "5ee74a8d-3b5a-4ccd-ad44-6bd9ae8ab31f"
+ "1f112dc0-587e-45c0-a455-19ecbe3b0e59"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023356Z:5ee74a8d-3b5a-4ccd-ad44-6bd9ae8ab31f"
+ "AUSTRALIAEAST:20180607T125729Z:1f112dc0-587e-45c0-a455-19ecbe3b0e59"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:55 GMT"
+ "Thu, 07 Jun 2018 12:57:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3315,25 +3262,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMxMTM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e4429f6-5ca7-4457-a4b7-a9853d23e1c2"
+ "659d012f-30f5-4d90-88a2-c6a8712c04a6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7009' under resource group 'ps4001' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps1137' under resource group 'ps9442' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -3351,43 +3298,46 @@
"gateway"
],
"x-ms-request-id": [
- "a1d18ad7-deca-4b50-9df4-bc62507eac49"
+ "cac8b8e9-21e6-4432-a6cf-77af0b104df8"
],
"x-ms-correlation-request-id": [
- "a1d18ad7-deca-4b50-9df4-bc62507eac49"
+ "cac8b8e9-21e6-4432-a6cf-77af0b104df8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023357Z:a1d18ad7-deca-4b50-9df4-bc62507eac49"
+ "AUSTRALIAEAST:20180607T125730Z:cac8b8e9-21e6-4432-a6cf-77af0b104df8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:33:57 GMT"
+ "Thu, 07 Jun 2018 12:57:30 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMxMTM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7009.azuredatalakestore.net\",\r\n \"accountId\": \"ef118c17-9732-4429-a276-70fe7d243d09\",\r\n \"creationTime\": \"2017-12-07T02:34:01.7874699Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:01.7874699Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"41e3d9cb-6777-44f3-a7f8-5d5a08dddaf5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009\",\r\n \"name\": \"ps7009\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1137.azuredatalakestore.net\",\r\n \"accountId\": \"20552133-4c48-4ea9-8069-ab62225fb45f\",\r\n \"creationTime\": \"2018-06-07T12:57:36.4593857Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:57:36.4593857Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"77f2362a-a7e0-441f-b79e-322b1ee9714f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137\",\r\n \"name\": \"ps1137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -3399,31 +3349,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4661f702-1c9f-407d-abbd-e17f59682a56"
+ "997c8bad-29c5-4e7a-94e8-7aca9dd16888"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14985"
],
"x-ms-correlation-request-id": [
- "2083edd2-5980-4c24-87cf-8d2d0281ba6e"
+ "ee8ce395-36cf-4f2a-accf-ccd43ebcfb06"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023434Z:2083edd2-5980-4c24-87cf-8d2d0281ba6e"
+ "AUSTRALIAEAST:20180607T125811Z:ee8ce395-36cf-4f2a-accf-ccd43ebcfb06"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:33 GMT"
+ "Thu, 07 Jun 2018 12:58:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3438,28 +3385,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMxMTM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e69497b-9c5b-4a23-b789-a5299c05b20e"
+ "902dd59a-e82b-4613-ad68-a4619b6e8934"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7009.azuredatalakestore.net\",\r\n \"accountId\": \"ef118c17-9732-4429-a276-70fe7d243d09\",\r\n \"creationTime\": \"2017-12-07T02:34:01.7874699Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:34:01.7874699Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"41e3d9cb-6777-44f3-a7f8-5d5a08dddaf5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009\",\r\n \"name\": \"ps7009\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1137.azuredatalakestore.net\",\r\n \"accountId\": \"20552133-4c48-4ea9-8069-ab62225fb45f\",\r\n \"creationTime\": \"2018-06-07T12:57:36.4593857Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:57:36.4593857Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"77f2362a-a7e0-441f-b79e-322b1ee9714f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137\",\r\n \"name\": \"ps1137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -3471,31 +3418,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c4c38578-b13d-408d-bf72-e7196ba3829e"
+ "cdfc3d9c-4879-41b0-8966-36cb3fb7493d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14983"
],
"x-ms-correlation-request-id": [
- "af6482c1-9f04-4058-b049-cec3cf635c11"
+ "e112f16f-bcb7-4e9a-b383-62aea5943772"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023605Z:af6482c1-9f04-4058-b049-cec3cf635c11"
+ "AUSTRALIAEAST:20180607T130004Z:e112f16f-bcb7-4e9a-b383-62aea5943772"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:36:05 GMT"
+ "Thu, 07 Jun 2018 13:00:04 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3510,34 +3454,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMxMTM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "399aad83-7e5f-42ec-a751-92292ba34aaa"
+ "122a39eb-7697-4728-bcef-cec43f65fddf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ef118c17-9732-4429-a276-70fe7d243d09\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009\",\r\n \"name\": \"ps7009\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"20552133-4c48-4ea9-8069-ab62225fb45f\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137\",\r\n \"name\": \"ps1137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -3552,37 +3496,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef118c17-9732-4429-a276-70fe7d243d090?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/20552133-4c48-4ea9-8069-ab62225fb45f0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "a7843f2c-dae6-4973-80f0-f684086be365"
+ "6f3663d8-7444-4a2e-a26f-a32936683515"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "707769e4-b4e2-4564-b2e6-bfa3324bdca9"
+ "6b363548-fdd5-4e31-99a9-8102fe1dcb53"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023401Z:707769e4-b4e2-4564-b2e6-bfa3324bdca9"
+ "AUSTRALIAEAST:20180607T125735Z:6b363548-fdd5-4e31-99a9-8102fe1dcb53"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:00 GMT"
+ "Thu, 07 Jun 2018 12:57:35 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3597,13 +3538,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef118c17-9732-4429-a276-70fe7d243d090?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmMTE4YzE3LTk3MzItNDQyOS1hMjc2LTcwZmU3ZDI0M2QwOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/20552133-4c48-4ea9-8069-ab62225fb45f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzIwNTUyMTMzLTRjNDgtNGVhOS04MDY5LWFiNjIyMjVmYjQ1ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3624,31 +3565,28 @@
"no-cache"
],
"x-ms-request-id": [
- "dadbc796-7403-4519-9e65-da6c7b09469a"
+ "fed9e529-dfd6-4065-aaff-88d28150d9bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14988"
],
"x-ms-correlation-request-id": [
- "8485179b-98ef-4ed0-bd5a-ccd352b23b3c"
+ "b75edea9-7970-4938-815e-6d23612daad1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023412Z:8485179b-98ef-4ed0-bd5a-ccd352b23b3c"
+ "AUSTRALIAEAST:20180607T125747Z:b75edea9-7970-4938-815e-6d23612daad1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:11 GMT"
+ "Thu, 07 Jun 2018 12:57:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3663,13 +3601,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef118c17-9732-4429-a276-70fe7d243d090?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmMTE4YzE3LTk3MzItNDQyOS1hMjc2LTcwZmU3ZDI0M2QwOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/20552133-4c48-4ea9-8069-ab62225fb45f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzIwNTUyMTMzLTRjNDgtNGVhOS04MDY5LWFiNjIyMjVmYjQ1ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3690,31 +3628,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7adb4aa9-82f9-4fd7-8ccc-75a8b831b2f1"
+ "1a1b9be1-dc72-441e-997b-d896021d99bf"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14987"
],
"x-ms-correlation-request-id": [
- "08b0d510-d081-46f6-a914-bfa91ecea7c7"
+ "98ea1c92-4946-4759-8b26-5e97945f6238"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023422Z:08b0d510-d081-46f6-a914-bfa91ecea7c7"
+ "AUSTRALIAEAST:20180607T125758Z:98ea1c92-4946-4759-8b26-5e97945f6238"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:21 GMT"
+ "Thu, 07 Jun 2018 12:57:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3729,13 +3664,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef118c17-9732-4429-a276-70fe7d243d090?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmMTE4YzE3LTk3MzItNDQyOS1hMjc2LTcwZmU3ZDI0M2QwOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/20552133-4c48-4ea9-8069-ab62225fb45f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzIwNTUyMTMzLTRjNDgtNGVhOS04MDY5LWFiNjIyMjVmYjQ1ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3756,31 +3691,28 @@
"no-cache"
],
"x-ms-request-id": [
- "857d13be-7dd7-4e29-8b5e-31008062f7d6"
+ "276d6d18-9df6-4700-a011-24b58bd44412"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14986"
],
"x-ms-correlation-request-id": [
- "5782ab12-a1c3-46e3-b59b-1d875e8a6d35"
+ "55ec3068-a125-4ffa-acd6-503d17cc9d29"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023433Z:5782ab12-a1c3-46e3-b59b-1d875e8a6d35"
+ "AUSTRALIAEAST:20180607T125809Z:55ec3068-a125-4ffa-acd6-503d17cc9d29"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:33 GMT"
+ "Thu, 07 Jun 2018 12:58:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3795,34 +3727,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7661\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps3888\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "da6732b3-4837-4507-93e9-4b55e0a2fc94"
+ "f712628c-0b64-464f-b554-21ef1ab62f71"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "487"
],
"Content-Type": [
"application/json"
@@ -3837,10 +3769,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/757c3e32-79f2-4927-9e5b-a30eb08126570?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "2ff161e2-5dee-4c34-993e-210644a635d3"
+ "ebcf1947-2b6d-4dfe-a80f-fcc1c6a9f165"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3849,25 +3781,22 @@
"1199"
],
"x-ms-correlation-request-id": [
- "9c73da74-9012-47f7-b7a0-d5ba1e3253f9"
+ "e74f3bd4-393d-403f-ab4f-d1fbb42c9930"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023436Z:9c73da74-9012-47f7-b7a0-d5ba1e3253f9"
+ "AUSTRALIAEAST:20180607T125817Z:e74f3bd4-393d-403f-ab4f-d1fbb42c9930"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:36 GMT"
+ "Thu, 07 Jun 2018 12:58:17 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3882,16 +3811,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iMTJhZjNjMy04YmQ5LTQyZjUtYmQ0Ni1hOTJjNmZhNGNkM2QwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/757c3e32-79f2-4927-9e5b-a30eb08126570?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy83NTdjM2UzMi03OWYyLTQ5MjctOWU1Yi1hMzBlYjA4MTI2NTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -3909,31 +3838,28 @@
"no-cache"
],
"x-ms-request-id": [
- "cb2b8219-ed86-4bf7-a224-2f6cbb936b75"
+ "832f43fb-1114-4729-95c4-c4a3b8ebec9d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14992"
],
"x-ms-correlation-request-id": [
- "e4d39c29-dbd5-44ad-9dfd-c07135313cd9"
+ "e724ee9d-882d-4f15-9487-f64e6ed00fa3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023447Z:e4d39c29-dbd5-44ad-9dfd-c07135313cd9"
+ "AUSTRALIAEAST:20180607T125829Z:e724ee9d-882d-4f15-9487-f64e6ed00fa3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:47 GMT"
+ "Thu, 07 Jun 2018 12:58:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3948,16 +3874,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iMTJhZjNjMy04YmQ5LTQyZjUtYmQ0Ni1hOTJjNmZhNGNkM2QwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/757c3e32-79f2-4927-9e5b-a30eb08126570?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy83NTdjM2UzMi03OWYyLTQ5MjctOWU1Yi1hMzBlYjA4MTI2NTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -3975,31 +3901,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0d1864b9-9cc6-4d32-a3d2-fe3e1185a3bb"
+ "ca78a991-f54f-491a-9a7b-78af8494eac6"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14991"
],
"x-ms-correlation-request-id": [
- "72df4e52-c64e-4761-b8bc-ef06001194ca"
+ "fe6a43fc-ed64-4590-b136-18109147c118"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023458Z:72df4e52-c64e-4761-b8bc-ef06001194ca"
+ "AUSTRALIAEAST:20180607T125840Z:fe6a43fc-ed64-4590-b136-18109147c118"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:34:57 GMT"
+ "Thu, 07 Jun 2018 12:58:40 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4014,16 +3937,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iMTJhZjNjMy04YmQ5LTQyZjUtYmQ0Ni1hOTJjNmZhNGNkM2QwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/757c3e32-79f2-4927-9e5b-a30eb08126570?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy83NTdjM2UzMi03OWYyLTQ5MjctOWU1Yi1hMzBlYjA4MTI2NTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -4041,31 +3964,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4d553755-e879-4014-8c93-ff7ba621208f"
+ "e2e64ba3-890d-409f-a9be-fc8ccfe94e35"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14990"
],
"x-ms-correlation-request-id": [
- "675b59cb-1979-4634-8290-853b8688927d"
+ "6583dd84-785b-4471-b48d-392adaf66a6d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023509Z:675b59cb-1979-4634-8290-853b8688927d"
+ "AUSTRALIAEAST:20180607T125851Z:6583dd84-785b-4471-b48d-392adaf66a6d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:08 GMT"
+ "Thu, 07 Jun 2018 12:58:51 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4080,8 +4000,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\"\r\n }\r\n}",
"RequestHeaders": {
@@ -4092,22 +4012,22 @@
"109"
],
"x-ms-client-request-id": [
- "d12730a3-9475-4d55-a9f0-cb90b6bc18d8"
+ "301862f6-2331-4727-a1b9-c59d8b759de4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7661\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7661\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3888\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3888\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "970"
+ "991"
],
"Content-Type": [
"application/json"
@@ -4119,31 +4039,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f35c2cca-2253-4746-8c7e-29caa7d22c81"
+ "0183a8f2-0957-421b-b9fc-6b5a92bedce7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "5ca35cf2-84db-418c-bcb0-4bd61e68ee62"
+ "dfc52e71-545f-4bb2-a0ba-9700e39b238c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023516Z:5ca35cf2-84db-418c-bcb0-4bd61e68ee62"
+ "AUSTRALIAEAST:20180607T125904Z:dfc52e71-545f-4bb2-a0ba-9700e39b238c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:15 GMT"
+ "Thu, 07 Jun 2018 12:59:04 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4158,28 +4075,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d65c40c7-8518-4fec-a453-a15da0693595"
+ "3f39d371-6694-40dd-8489-ea5eb5a41a08"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4927.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b12af3c3-8bd9-42f5-bd46-a92c6fa4cd3d\",\r\n \"creationTime\": \"2017-12-07T02:34:40.0291735Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:35:15.2219369Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927\",\r\n \"name\": \"ps4927\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4696.azuredatalakeanalytics.net\",\r\n \"accountId\": \"757c3e32-79f2-4927-9e5b-a30eb0812657\",\r\n \"creationTime\": \"2018-06-07T12:58:18.9004348Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:59:03.6598199Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696\",\r\n \"name\": \"ps4696\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "523"
+ "521"
],
"Content-Type": [
"application/json"
@@ -4191,31 +4108,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ef9ab28d-21ef-4cbf-a22b-80ab1cefe8c1"
+ "fa5f8f41-1234-4794-acb9-a5aa167105e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14982"
],
"x-ms-correlation-request-id": [
- "ff3e6a9b-0d47-4de9-a16f-c7a17ee0cd6e"
+ "1ec70cbf-9276-4b09-b7cb-473f172b5971"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023517Z:ff3e6a9b-0d47-4de9-a16f-c7a17ee0cd6e"
+ "AUSTRALIAEAST:20180607T125906Z:1ec70cbf-9276-4b09-b7cb-473f172b5971"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:16 GMT"
+ "Thu, 07 Jun 2018 12:59:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4230,25 +4144,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/DataLakeStoreAccounts/ps7009?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9EYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM3MDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts/ps1137?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9kYXRhTGFrZVN0b3JlQWNjb3VudHMvcHMxMTM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8789c90-51ce-4bd5-995f-ad4c8857837c"
+ "52f38996-6508-4e84-af58-67defb794a69"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/dataLakeStoreAccounts/ps7009\",\r\n \"name\": \"ps7009\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts/ps1137\",\r\n \"name\": \"ps1137\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"298"
@@ -4263,31 +4177,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1b7e7f10-913b-471c-8bc0-8f8daa746161"
+ "bcddc116-6bfb-4366-b38b-0a02e6ea71c2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "a1f9b452-8e96-4524-96fc-4c8b4a30f575"
+ "7bf799b5-28dd-4f82-8af1-45fa9f0db74d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023519Z:a1f9b452-8e96-4524-96fc-4c8b4a30f575"
+ "AUSTRALIAEAST:20180607T125910Z:7bf799b5-28dd-4f82-8af1-45fa9f0db74d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:19 GMT"
+ "Thu, 07 Jun 2018 12:59:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4302,25 +4213,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/DataLakeStoreAccounts/ps7009?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9EYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM3MDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts/ps1137?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9kYXRhTGFrZVN0b3JlQWNjb3VudHMvcHMxMTM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "896e8a82-24ba-4f53-b182-b23f846911ec"
+ "c436fe6b-f640-4717-9255-f25d775dc5b5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/dataLakeStoreAccounts/ps7009\",\r\n \"name\": \"ps7009\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts/ps1137\",\r\n \"name\": \"ps1137\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"298"
@@ -4335,31 +4246,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f0a7cc5e-f5c5-4d86-93c0-c4cdfe8dd972"
+ "5f7e137b-92f1-4532-8bb5-45819e9415c4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14976"
],
"x-ms-correlation-request-id": [
- "6ded15e8-589b-4676-b4e7-ce97ca56e31c"
+ "1422ea79-f7f4-4845-9a46-1bb817e934e3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023522Z:6ded15e8-589b-4676-b4e7-ce97ca56e31c"
+ "AUSTRALIAEAST:20180607T125916Z:1422ea79-f7f4-4845-9a46-1bb817e934e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:21 GMT"
+ "Thu, 07 Jun 2018 12:59:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4374,25 +4282,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/DataLakeStoreAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9EYXRhTGFrZVN0b3JlQWNjb3VudHMvP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9kYXRhTGFrZVN0b3JlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f04c7877-0a6a-48f5-807c-68020802fcc9"
+ "8c618a01-e9d8-43c9-88a8-feccc13dc7af"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/dataLakeStoreAccounts/ps7009\",\r\n \"name\": \"ps7009\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/dataLakeStoreAccounts/ps7661\",\r\n \"name\": \"ps7661\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts/ps1137\",\r\n \"name\": \"ps1137\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts/ps3888\",\r\n \"name\": \"ps3888\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"609"
@@ -4407,31 +4315,28 @@
"no-cache"
],
"x-ms-request-id": [
- "91be1840-8fd0-44ed-8116-c9ebcba45669"
+ "7464b63c-50ce-4a70-a002-38d02bb07d2c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14973"
],
"x-ms-correlation-request-id": [
- "0d34b60e-ddea-4142-94da-23ba3b67a666"
+ "b62e65bc-e433-417b-b080-9008c58a511a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023524Z:0d34b60e-ddea-4142-94da-23ba3b67a666"
+ "AUSTRALIAEAST:20180607T125920Z:b62e65bc-e433-417b-b080-9008c58a511a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:24 GMT"
+ "Thu, 07 Jun 2018 12:59:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4446,25 +4351,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/DataLakeStoreAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9EYXRhTGFrZVN0b3JlQWNjb3VudHMvP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9kYXRhTGFrZVN0b3JlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e49339c7-b9e8-4bb7-89e3-9044dddc9f8c"
+ "fca8cea3-f5bc-4268-ad99-e60bc1d6c0ec"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/dataLakeStoreAccounts/ps7661\",\r\n \"name\": \"ps7661\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts/ps3888\",\r\n \"name\": \"ps3888\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"310"
@@ -4479,31 +4384,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2ec25fbe-a34d-41c7-a39c-35a9d83f4b78"
+ "c0c3d08b-6d06-4dc0-a998-a9815be35732"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14961"
],
"x-ms-correlation-request-id": [
- "f5b5d7b1-c298-4811-bf78-ebe0444ba596"
+ "8e129eb2-6f4a-485a-9338-2201e1baee87"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023537Z:f5b5d7b1-c298-4811-bf78-ebe0444ba596"
+ "AUSTRALIAEAST:20180607T125941Z:8e129eb2-6f4a-485a-9338-2201e1baee87"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:37 GMT"
+ "Thu, 07 Jun 2018 12:59:40 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4518,22 +4420,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/StorageAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9TdG9yYWdlQWNjb3VudHMvP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/storageAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d4656f46-6c9a-49ba-8ae3-22568e99e5d7"
+ "3bfcaff6-5cde-470a-a530-6fe2d9e48d76"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -4551,31 +4453,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b7d508ff-9eb8-40be-8d72-b350a9e3d35b"
+ "29f439f3-8196-499b-9e8d-8a9a60661268"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14972"
],
"x-ms-correlation-request-id": [
- "09236dc5-f814-47a2-aac5-aee6bc6f0d1e"
+ "4f74d365-18a4-48e5-a03b-841a3a9e6d1b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023525Z:09236dc5-f814-47a2-aac5-aee6bc6f0d1e"
+ "AUSTRALIAEAST:20180607T125921Z:4f74d365-18a4-48e5-a03b-841a3a9e6d1b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:25 GMT"
+ "Thu, 07 Jun 2018 12:59:21 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4590,28 +4489,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/StorageAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9TdG9yYWdlQWNjb3VudHMvP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/storageAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29dff899-7f5f-4fc4-b58c-3e0a223691ee"
+ "65b7dbe3-0e9e-4dee-8437-d8f5183a5cea"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/storageAccounts/azureblob01967\",\r\n \"name\": \"azureblob01967\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/storageAccounts/azureblob013831\",\r\n \"name\": \"azureblob013831\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "308"
+ "310"
],
"Content-Type": [
"application/json"
@@ -4623,31 +4522,28 @@
"no-cache"
],
"x-ms-request-id": [
- "86331a6d-a27b-4a64-a122-a2d8d5a1828a"
+ "65a4a803-4842-469c-bf41-50b5ad369590"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14960"
],
"x-ms-correlation-request-id": [
- "2e53f481-30ff-4c45-bbfa-6344515ec931"
+ "40923ec3-53d9-4602-aed4-5c4a1a284d59"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023538Z:2e53f481-30ff-4c45-bbfa-6344515ec931"
+ "AUSTRALIAEAST:20180607T125942Z:40923ec3-53d9-4602-aed4-5c4a1a284d59"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:37 GMT"
+ "Thu, 07 Jun 2018 12:59:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4662,22 +4558,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/DataLakeStoreAccounts/ps7009?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9EYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM3MDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/dataLakeStoreAccounts/ps1137?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9kYXRhTGFrZVN0b3JlQWNjb3VudHMvcHMxMTM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b526462b-052e-4dc5-a392-09c656eeda11"
+ "428119db-cdce-424b-9b2e-b0a6944d4c57"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -4692,28 +4588,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5403f20c-69e2-4776-88ee-bda2922d8ebf"
+ "221a1d3e-4d71-47ac-8ce9-313e2dd1de82"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "df1239e6-719d-406b-bb3e-b34d234a9a9b"
+ "9fcf50bd-d66e-41cc-a714-d484f2743223"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023527Z:df1239e6-719d-406b-bb3e-b34d234a9a9b"
+ "AUSTRALIAEAST:20180607T125924Z:9fcf50bd-d66e-41cc-a714-d484f2743223"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:27 GMT"
+ "Thu, 07 Jun 2018 12:59:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4728,10 +4624,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/StorageAccounts/azureblob01967?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9TdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE5Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/storageAccounts/azureblob013831?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9zdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDEzODMxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"pxXWEDwFr7hNJr2zi/noAGEoMK/eX9kkIVC3PSAPnY6i/ffZfIK9JTbcenLNXG3I4xbtNUadWIbTKTaPEv4s7A==\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"Z5CWTVNBX8JfF7OFCASXQQzw2dZ8Ig0fkKwomyULH/LvQLG8x69QsytXXm5qJ/RSyTermX+G3WC8eaLuENHQdA==\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -4740,22 +4636,22 @@
"137"
],
"x-ms-client-request-id": [
- "a03b9bba-7994-437b-b434-305560fc8cd5"
+ "2b475785-5e1d-42ba-8c5e-a73e2653bad3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/storageAccounts/azureblob01967\",\r\n \"name\": \"azureblob01967\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/storageAccounts/azureblob013831\",\r\n \"name\": \"azureblob013831\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "296"
+ "298"
],
"Content-Type": [
"application/json"
@@ -4767,31 +4663,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7e802728-47da-4e6a-8860-cb4301a0385f"
+ "515f0e72-bb41-4647-882d-069464b58880"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "fa136fcd-70fe-4911-b48e-4ace1cd75d99"
+ "e21d72b1-ab9e-41cc-91a7-d212c7f03b0d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023532Z:fa136fcd-70fe-4911-b48e-4ace1cd75d99"
+ "AUSTRALIAEAST:20180607T125931Z:e21d72b1-ab9e-41cc-91a7-d212c7f03b0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:32 GMT"
+ "Thu, 07 Jun 2018 12:59:31 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4806,28 +4699,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/StorageAccounts/azureblob01967?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9TdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE5Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/storageAccounts/azureblob013831?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9zdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDEzODMxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5876d2d4-3f45-49b9-be92-baa08eac3a78"
+ "7085f042-773c-46a0-bf73-bb36db764d36"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/storageAccounts/azureblob01967\",\r\n \"name\": \"azureblob01967\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/storageAccounts/azureblob013831\",\r\n \"name\": \"azureblob013831\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "296"
+ "298"
],
"Content-Type": [
"application/json"
@@ -4839,31 +4732,28 @@
"no-cache"
],
"x-ms-request-id": [
- "97640f0e-8f0a-4b18-a7be-193772c930ef"
+ "e131be4c-30da-4eb7-b6ca-27fb6c0ed2c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14964"
],
"x-ms-correlation-request-id": [
- "75208e49-b617-438e-a2cc-57f296d5fcc8"
+ "1c3a3f88-5027-4b11-be05-f70e155e1d1e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023535Z:75208e49-b617-438e-a2cc-57f296d5fcc8"
+ "AUSTRALIAEAST:20180607T125937Z:1c3a3f88-5027-4b11-be05-f70e155e1d1e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:34 GMT"
+ "Thu, 07 Jun 2018 12:59:36 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4878,22 +4768,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927/StorageAccounts/azureblob01967?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNy9TdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE5Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696/storageAccounts/azureblob013831?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Ni9zdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDEzODMxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "feba5d5f-ee75-44dd-9a67-b2e6fe916a57"
+ "63cbc3d9-c188-4797-8529-2c39c44dac07"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -4908,28 +4798,28 @@
"no-cache"
],
"x-ms-request-id": [
- "49cf1d80-1f10-4004-92f1-a05aa37abc1c"
+ "7a8828f2-74b9-42b4-8265-7cceb1ee0886"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "c10a5419-07ef-4804-9015-6f2117863fb7"
+ "fca311e4-d86a-42ab-a242-b33b887d374f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023540Z:c10a5419-07ef-4804-9015-6f2117863fb7"
+ "AUSTRALIAEAST:20180607T125945Z:fca311e4-d86a-42ab-a242-b33b887d374f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:39 GMT"
+ "Thu, 07 Jun 2018 12:59:44 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4944,22 +4834,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeAnalytics/accounts/ps4927?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDkyNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeAnalytics/accounts/ps4696?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDY5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff3f3cea-15e2-4d79-af91-0addd3fdb380"
+ "95be7037-c437-4e91-93b0-fa7382b0f998"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -4974,28 +4864,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9d4c93fc-e239-4752-98fb-38357c3e6ff0"
+ "9495e3a6-adbd-41d8-a5a6-8c03e68c4a9d"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "9ac554c9-30a0-4db2-a1e2-c08257315c2b"
+ "20f1fc36-ab9e-41b6-a5bf-6b0f9015d4c5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023547Z:9ac554c9-30a0-4db2-a1e2-c08257315c2b"
+ "AUSTRALIAEAST:20180607T125954Z:20f1fc36-ab9e-41b6-a5bf-6b0f9015d4c5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:35:47 GMT"
+ "Thu, 07 Jun 2018 12:59:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -5010,19 +4900,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NjYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps3888?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzODg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a578e8dc-ab1d-4883-9059-e90b14507c3b"
+ "e201bdbb-1bf9-477a-a5c2-2ee10a6ad6a1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -5039,104 +4929,29 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3dcacea0-5dab-4fda-a633-ab7cd4c805971?api-version=2016-11-01&expanded=true"
- ],
"x-ms-request-id": [
- "8ef54894-763c-43fc-9cad-e609eb33c8bc"
+ "03571a2d-b4af-436c-844a-ec8f3065102d"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "44140a4d-b998-411f-b9fd-9cb23f8887ea"
+ "07cc1b7f-120f-402f-bf8e-edfcb532b3df"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023554Z:44140a4d-b998-411f-b9fd-9cb23f8887ea"
+ "AUSTRALIAEAST:20180607T130002Z:07cc1b7f-120f-402f-bf8e-edfcb532b3df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 07 Dec 2017 02:35:54 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7661/operationresults/1?api-version=2016-11-01"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3dcacea0-5dab-4fda-a633-ab7cd4c805971?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkY2FjZWEwLTVkYWItNGZkYS1hNjMzLWFiN2NkNGM4MDU5NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "9af331b3-e4c1-4d24-b92b-1c088dd58340"
- ],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "475a70f0-7ad4-4d98-b0ac-1cb3193d8bdd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T023605Z:475a70f0-7ad4-4d98-b0ac-1cb3193d8bdd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:36:04 GMT"
+ "Thu, 07 Jun 2018 13:00:02 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -5151,19 +4966,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9442/providers/Microsoft.DataLakeStore/accounts/ps1137?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMxMTM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e6ab928d-9d70-4673-93d2-ad989bc39bd1"
+ "bfdab523-1b8b-44af-a532-d2cc952b333d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -5180,104 +4995,29 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef118c17-9732-4429-a276-70fe7d243d091?api-version=2016-11-01&expanded=true"
- ],
"x-ms-request-id": [
- "760efd5f-efef-4282-a7e6-52891e13974a"
+ "6e8ab22d-e1a6-4bc0-8d5e-93c1bdd68ff9"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "fccbea27-d8eb-4fb0-80d8-cbf3092ce62d"
+ "57dc47f7-6f91-429e-a4f2-a512e93cbe6c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023609Z:fccbea27-d8eb-4fb0-80d8-cbf3092ce62d"
+ "AUSTRALIAEAST:20180607T130008Z:57dc47f7-6f91-429e-a4f2-a512e93cbe6c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 07 Dec 2017 02:36:08 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4001/providers/Microsoft.DataLakeStore/accounts/ps7009/operationresults/1?api-version=2016-11-01"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef118c17-9732-4429-a276-70fe7d243d091?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmMTE4YzE3LTk3MzItNDQyOS1hMjc2LTcwZmU3ZDI0M2QwOTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "a2f78de3-cd06-4855-a82f-57adc70bd395"
- ],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "ed886893-7709-4e27-a48a-891e639fb3e4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T023620Z:ed886893-7709-4e27-a48a-891e639fb3e4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:36:20 GMT"
+ "Thu, 07 Jun 2018 13:00:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -5292,79 +5032,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef118c17-9732-4429-a276-70fe7d243d091?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmMTE4YzE3LTk3MzItNDQyOS1hMjc2LTcwZmU3ZDI0M2QwOTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9442?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTQ0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "55520129-6923-4012-9adb-9896fb640ce9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
- ],
- "x-ms-correlation-request-id": [
- "bb603250-4c58-48e9-9c53-72af393f3134"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T023631Z:bb603250-4c58-48e9-9c53-72af393f3134"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 07 Dec 2017 02:36:30 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
+ "x-ms-client-request-id": [
+ "391baafd-d007-47f6-821c-202ea80ad6ee"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "accept-language": [
+ "en-US"
],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4001?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDAwMT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5381,44 +5064,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "27f0f0b5-3c16-4903-97d1-496d8cf24de5"
+ "35aecb63-c25c-4817-a034-d8625a4c57f8"
],
"x-ms-correlation-request-id": [
- "27f0f0b5-3c16-4903-97d1-496d8cf24de5"
+ "35aecb63-c25c-4817-a034-d8625a4c57f8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023632Z:27f0f0b5-3c16-4903-97d1-496d8cf24de5"
+ "AUSTRALIAEAST:20180607T130012Z:35aecb63-c25c-4817-a034-d8625a4c57f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:36:32 GMT"
+ "Thu, 07 Jun 2018 13:00:12 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5436,43 +5122,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14992"
],
"x-ms-request-id": [
- "7c869226-09c4-4470-825a-cb6bb5d089f5"
+ "fcd6e994-85ac-4546-8658-b0c1ff99e5c4"
],
"x-ms-correlation-request-id": [
- "7c869226-09c4-4470-825a-cb6bb5d089f5"
+ "fcd6e994-85ac-4546-8658-b0c1ff99e5c4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023633Z:7c869226-09c4-4470-825a-cb6bb5d089f5"
+ "AUSTRALIAEAST:20180607T130028Z:fcd6e994-85ac-4546-8658-b0c1ff99e5c4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:36:32 GMT"
+ "Thu, 07 Jun 2018 13:00:27 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5490,43 +5179,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14991"
],
"x-ms-request-id": [
- "d46aad67-9335-4f01-be7f-89d3f41bd5a4"
+ "aa0c46c1-a5dd-49b2-91a7-092aa1582640"
],
"x-ms-correlation-request-id": [
- "d46aad67-9335-4f01-be7f-89d3f41bd5a4"
+ "aa0c46c1-a5dd-49b2-91a7-092aa1582640"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023648Z:d46aad67-9335-4f01-be7f-89d3f41bd5a4"
+ "AUSTRALIAEAST:20180607T130043Z:aa0c46c1-a5dd-49b2-91a7-092aa1582640"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:36:48 GMT"
+ "Thu, 07 Jun 2018 13:00:43 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5540,47 +5232,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14990"
],
"x-ms-request-id": [
- "06607b96-74cb-47b9-9b9b-8ed3e3eb2080"
+ "c9244237-7281-4876-87cb-48a22ab0e0e1"
],
"x-ms-correlation-request-id": [
- "06607b96-74cb-47b9-9b9b-8ed3e3eb2080"
+ "c9244237-7281-4876-87cb-48a22ab0e0e1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023703Z:06607b96-74cb-47b9-9b9b-8ed3e3eb2080"
+ "AUSTRALIAEAST:20180607T130059Z:c9244237-7281-4876-87cb-48a22ab0e0e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:37:03 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 13:00:59 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5595,32 +5284,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14989"
],
"x-ms-request-id": [
- "bbbb82bd-40ac-4beb-91b5-61c51631824b"
+ "83f00cf6-26da-48b6-92d1-be3977ea8e57"
],
"x-ms-correlation-request-id": [
- "bbbb82bd-40ac-4beb-91b5-61c51631824b"
+ "83f00cf6-26da-48b6-92d1-be3977ea8e57"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023718Z:bbbb82bd-40ac-4beb-91b5-61c51631824b"
+ "AUSTRALIAEAST:20180607T130100Z:83f00cf6-26da-48b6-92d1-be3977ea8e57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:37:18 GMT"
+ "Thu, 07 Jun 2018 13:00:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg1175?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTE3NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg19773?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTk3NzM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -5642,90 +5334,39 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "69248329-ee9b-4ceb-b3a8-35eae074ed2f"
+ "1b56e817-e2b8-4365-816a-35346e276d81"
],
"x-ms-correlation-request-id": [
- "69248329-ee9b-4ceb-b3a8-35eae074ed2f"
+ "1b56e817-e2b8-4365-816a-35346e276d81"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023720Z:69248329-ee9b-4ceb-b3a8-35eae074ed2f"
+ "AUSTRALIAEAST:20180607T130104Z:1b56e817-e2b8-4365-816a-35346e276d81"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 07 Dec 2017 02:37:20 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhOelV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
- ],
- "x-ms-request-id": [
- "c20b653a-227c-4e0c-bcce-6fa2ac2ee46e"
- ],
- "x-ms-correlation-request-id": [
- "c20b653a-227c-4e0c-bcce-6fa2ac2ee46e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T023720Z:c20b653a-227c-4e0c-bcce-6fa2ac2ee46e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:37:20 GMT"
+ "Thu, 07 Jun 2018 13:01:04 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhOelV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTVOemN6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5751,35 +5392,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14999"
],
"x-ms-request-id": [
- "c41d2cf5-86a7-4c43-886f-a70e30e979c2"
+ "54751253-41d2-4a4e-81fc-d930849a6b58"
],
"x-ms-correlation-request-id": [
- "c41d2cf5-86a7-4c43-886f-a70e30e979c2"
+ "54751253-41d2-4a4e-81fc-d930849a6b58"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023736Z:c41d2cf5-86a7-4c43-886f-a70e30e979c2"
+ "AUSTRALIAEAST:20180607T130105Z:54751253-41d2-4a4e-81fc-d930849a6b58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:37:35 GMT"
+ "Thu, 07 Jun 2018 13:01:05 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhOelV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTVOemN6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5805,35 +5449,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14998"
],
"x-ms-request-id": [
- "3016b004-35ef-4779-948e-d8974ecd15db"
+ "89291605-72ff-4373-97ca-c42f1f05c6b0"
],
"x-ms-correlation-request-id": [
- "3016b004-35ef-4779-948e-d8974ecd15db"
+ "89291605-72ff-4373-97ca-c42f1f05c6b0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023751Z:3016b004-35ef-4779-948e-d8974ecd15db"
+ "AUSTRALIAEAST:20180607T130120Z:89291605-72ff-4373-97ca-c42f1f05c6b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:37:50 GMT"
+ "Thu, 07 Jun 2018 13:01:20 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhOelV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTVOemN6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5859,35 +5506,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14997"
],
"x-ms-request-id": [
- "5e4e39dd-f573-4ed6-8a77-a480bdc431f8"
+ "e14353fb-adfe-4e34-b281-4ead5e607ba5"
],
"x-ms-correlation-request-id": [
- "5e4e39dd-f573-4ed6-8a77-a480bdc431f8"
+ "e14353fb-adfe-4e34-b281-4ead5e607ba5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023806Z:5e4e39dd-f573-4ed6-8a77-a480bdc431f8"
+ "AUSTRALIAEAST:20180607T130136Z:e14353fb-adfe-4e34-b281-4ead5e607ba5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:38:05 GMT"
+ "Thu, 07 Jun 2018 13:01:36 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhOelV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTVOemN6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5913,35 +5563,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14996"
],
"x-ms-request-id": [
- "c5b0dfcc-1c4d-4d3b-9a1f-0673650a08bb"
+ "e49109df-113d-4e29-ad5b-f0b64aabf061"
],
"x-ms-correlation-request-id": [
- "c5b0dfcc-1c4d-4d3b-9a1f-0673650a08bb"
+ "e49109df-113d-4e29-ad5b-f0b64aabf061"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023821Z:c5b0dfcc-1c4d-4d3b-9a1f-0673650a08bb"
+ "AUSTRALIAEAST:20180607T130152Z:e49109df-113d-4e29-ad5b-f0b64aabf061"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:38:20 GMT"
+ "Thu, 07 Jun 2018 13:01:51 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhOelV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTVOemN6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5967,35 +5620,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14978"
+ "14995"
],
"x-ms-request-id": [
- "fa98e3b4-9e79-4f3f-b2e7-19ca38b5e351"
+ "bd5297f3-9912-438e-bde2-3f8f212e0838"
],
"x-ms-correlation-request-id": [
- "fa98e3b4-9e79-4f3f-b2e7-19ca38b5e351"
+ "bd5297f3-9912-438e-bde2-3f8f212e0838"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023836Z:fa98e3b4-9e79-4f3f-b2e7-19ca38b5e351"
+ "AUSTRALIAEAST:20180607T130207Z:bd5297f3-9912-438e-bde2-3f8f212e0838"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:38:36 GMT"
+ "Thu, 07 Jun 2018 13:02:07 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhOelV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTVOemN6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -6021,35 +5677,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14977"
+ "14994"
],
"x-ms-request-id": [
- "84c0c9c3-4479-455a-b4fc-01eec644a898"
+ "9a9eaf84-5ada-4e03-bff8-0fcbecd4bee2"
],
"x-ms-correlation-request-id": [
- "84c0c9c3-4479-455a-b4fc-01eec644a898"
+ "9a9eaf84-5ada-4e03-bff8-0fcbecd4bee2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023852Z:84c0c9c3-4479-455a-b4fc-01eec644a898"
+ "AUSTRALIAEAST:20180607T130223Z:9a9eaf84-5ada-4e03-bff8-0fcbecd4bee2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:38:51 GMT"
+ "Thu, 07 Jun 2018 13:02:22 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExNzUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhOelV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE5NzczLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTVOemN6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -6072,25 +5731,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14976"
+ "14993"
],
"x-ms-request-id": [
- "5344174e-b987-486e-ab41-174218827ea4"
+ "77c3fea7-017f-4006-819e-9669343187f6"
],
"x-ms-correlation-request-id": [
- "5344174e-b987-486e-ab41-174218827ea4"
+ "77c3fea7-017f-4006-819e-9669343187f6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023907Z:5344174e-b987-486e-ab41-174218827ea4"
+ "AUSTRALIAEAST:20180607T130239Z:77c3fea7-017f-4006-819e-9669343187f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:39:07 GMT"
+ "Thu, 07 Jun 2018 13:02:38 GMT"
]
},
"StatusCode": 200
@@ -6098,14 +5760,14 @@
],
"Names": {
"RunPsTestWorkflow": [
- "abarg1175",
- "azureblob01967"
+ "abarg19773",
+ "azureblob013831"
],
"": [
- "ps4001",
- "ps4927",
- "ps7661",
- "ps7009"
+ "ps9442",
+ "ps4696",
+ "ps3888",
+ "ps1137"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaAccountTiers.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaAccountTiers.json
index 87013aa36232..2284c9d150fe 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaAccountTiers.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaAccountTiers.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "13dad6b5-40dd-4ba6-935b-16d80aa20299"
+ "600e9992-d6f3-481b-88d0-cdecf4c93d57"
],
"x-ms-correlation-request-id": [
- "13dad6b5-40dd-4ba6-935b-16d80aa20299"
+ "600e9992-d6f3-481b-88d0-cdecf4c93d57"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025306Z:13dad6b5-40dd-4ba6-935b-16d80aa20299"
+ "AUSTRALIAEAST:20180607T131819Z:600e9992-d6f3-481b-88d0-cdecf4c93d57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:06 GMT"
+ "Thu, 07 Jun 2018 13:18:18 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14998"
],
"x-ms-request-id": [
- "0f495c96-6cfa-4d2f-b3b0-2aca71b13440"
+ "f16c1361-265d-4f1e-978b-c5c7a7da33b9"
],
"x-ms-correlation-request-id": [
- "0f495c96-6cfa-4d2f-b3b0-2aca71b13440"
+ "f16c1361-265d-4f1e-978b-c5c7a7da33b9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025306Z:0f495c96-6cfa-4d2f-b3b0-2aca71b13440"
+ "AUSTRALIAEAST:20180607T131819Z:f16c1361-265d-4f1e-978b-c5c7a7da33b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:06 GMT"
+ "Thu, 07 Jun 2018 13:18:19 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5563?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTU2Mz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4864?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDg2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "93c4eee3-16fb-4bb8-87d0-c781fd465edc"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563\",\r\n \"name\": \"ps5563\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864\",\r\n \"name\": \"ps4864\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,52 +142,55 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-request-id": [
- "429427bd-ce19-48fd-8631-0bbb29d3bd85"
+ "02418095-f64e-4695-8a69-3499c7af2ab5"
],
"x-ms-correlation-request-id": [
- "429427bd-ce19-48fd-8631-0bbb29d3bd85"
+ "02418095-f64e-4695-8a69-3499c7af2ab5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025312Z:429427bd-ce19-48fd-8631-0bbb29d3bd85"
+ "AUSTRALIAEAST:20180607T131828Z:02418095-f64e-4695-8a69-3499c7af2ab5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:12 GMT"
+ "Thu, 07 Jun 2018 13:18:27 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a403d56-79da-443d-aa1f-31fdfb43e603"
+ "a6ac0ac9-d5a4-431c-9049-0360b411a6f2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9266' under resource group 'ps5563' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps411' under resource group 'ps4864' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "152"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -187,49 +205,52 @@
"gateway"
],
"x-ms-request-id": [
- "4204560d-16e7-401a-a09c-979bf4150b76"
+ "cf614b5a-e8e7-4263-bcb9-8c5f58f8d6bf"
],
"x-ms-correlation-request-id": [
- "4204560d-16e7-401a-a09c-979bf4150b76"
+ "cf614b5a-e8e7-4263-bcb9-8c5f58f8d6bf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025313Z:4204560d-16e7-401a-a09c-979bf4150b76"
+ "AUSTRALIAEAST:20180607T131829Z:cf614b5a-e8e7-4263-bcb9-8c5f58f8d6bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:13 GMT"
+ "Thu, 07 Jun 2018 13:18:29 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b7646036-de8f-4fbe-9c7d-2f4382856bc4"
+ "5ad8b6d3-996f-4c49-a47e-1254e6bdb4cb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9266' under resource group 'ps5563' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps411' under resource group 'ps4864' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "152"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -244,49 +265,52 @@
"gateway"
],
"x-ms-request-id": [
- "7df646b6-fd4c-441c-84bf-a0669cef474c"
+ "47ff0c19-dbfa-497a-ae69-de7cbdf52d98"
],
"x-ms-correlation-request-id": [
- "7df646b6-fd4c-441c-84bf-a0669cef474c"
+ "47ff0c19-dbfa-497a-ae69-de7cbdf52d98"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025352Z:7df646b6-fd4c-441c-84bf-a0669cef474c"
+ "AUSTRALIAEAST:20180607T131914Z:47ff0c19-dbfa-497a-ae69-de7cbdf52d98"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:52 GMT"
+ "Thu, 07 Jun 2018 13:19:14 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9c8eaae1-240c-4300-bb96-879751ffda6c"
+ "4dbf5fd3-d24c-4fd9-8b1b-08f0d4e58d9e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9266' under resource group 'ps5563' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps411' under resource group 'ps4864' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "152"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -301,43 +325,46 @@
"gateway"
],
"x-ms-request-id": [
- "fc241b17-7999-4777-a7f3-2d684e9b82df"
+ "11f272d9-0973-4450-b808-b5ddb52121e8"
],
"x-ms-correlation-request-id": [
- "fc241b17-7999-4777-a7f3-2d684e9b82df"
+ "11f272d9-0973-4450-b808-b5ddb52121e8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025352Z:fc241b17-7999-4777-a7f3-2d684e9b82df"
+ "AUSTRALIAEAST:20180607T131914Z:11f272d9-0973-4450-b808-b5ddb52121e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:52 GMT"
+ "Thu, 07 Jun 2018 13:19:14 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9266.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6af1424f-e7bd-4b0a-9e3f-0133932d0a42\",\r\n \"creationTime\": \"2017-12-07T02:53:56.792425Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:53:56.792425Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266\",\r\n \"name\": \"ps9266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps411.azuredatalakeanalytics.net\",\r\n \"accountId\": \"45e1b708-631e-401b-a608-20e9cde9b3a8\",\r\n \"creationTime\": \"2018-06-07T13:19:21.0075185Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:19:21.0075185Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411\",\r\n \"name\": \"ps411\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1234"
],
"Content-Type": [
"application/json"
@@ -349,31 +376,28 @@
"no-cache"
],
"x-ms-request-id": [
- "3fbc41ee-2c8e-463c-b348-714ab80f4c5a"
+ "d12a65dd-09b0-4d22-bb51-1228f8811731"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14987"
],
"x-ms-correlation-request-id": [
- "b45e6bb3-9429-471e-9bec-8aa6b94e2a69"
+ "412d376f-fc79-45c9-b4f3-d9e18b2da0b7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025427Z:b45e6bb3-9429-471e-9bec-8aa6b94e2a69"
+ "AUSTRALIAEAST:20180607T131955Z:412d376f-fc79-45c9-b4f3-d9e18b2da0b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:26 GMT"
+ "Thu, 07 Jun 2018 13:19:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -388,28 +412,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b69a2c81-c4ae-43c0-999f-acf851d1a842"
+ "69d8c7c1-2f4e-419f-9fa2-e4739a1317ea"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9266.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6af1424f-e7bd-4b0a-9e3f-0133932d0a42\",\r\n \"creationTime\": \"2017-12-07T02:53:56.792425Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:53:56.792425Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266\",\r\n \"name\": \"ps9266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps411.azuredatalakeanalytics.net\",\r\n \"accountId\": \"45e1b708-631e-401b-a608-20e9cde9b3a8\",\r\n \"creationTime\": \"2018-06-07T13:19:21.0075185Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:19:21.0075185Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411\",\r\n \"name\": \"ps411\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1234"
],
"Content-Type": [
"application/json"
@@ -421,31 +445,28 @@
"no-cache"
],
"x-ms-request-id": [
- "604c0dc4-59a9-46a5-8de8-168aa04e67ec"
+ "2fbb9e53-8609-41e8-9223-f28c52f69b4a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14986"
],
"x-ms-correlation-request-id": [
- "032446ea-8774-438d-86d6-33766bd38e9d"
+ "9fd79006-5883-4119-a52e-b4b15872a9d0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025427Z:032446ea-8774-438d-86d6-33766bd38e9d"
+ "AUSTRALIAEAST:20180607T131956Z:9fd79006-5883-4119-a52e-b4b15872a9d0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:27 GMT"
+ "Thu, 07 Jun 2018 13:19:56 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -460,28 +481,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7e94a55d-caf4-4e27-a1fa-5c2760ed6209"
+ "33973e96-afa8-4d5a-b4c1-9bf6509c970a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9266.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6af1424f-e7bd-4b0a-9e3f-0133932d0a42\",\r\n \"creationTime\": \"2017-12-07T02:53:56.792425Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:53:56.792425Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266\",\r\n \"name\": \"ps9266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps411.azuredatalakeanalytics.net\",\r\n \"accountId\": \"45e1b708-631e-401b-a608-20e9cde9b3a8\",\r\n \"creationTime\": \"2018-06-07T13:19:21.0075185Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:19:21.0075185Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411\",\r\n \"name\": \"ps411\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1234"
],
"Content-Type": [
"application/json"
@@ -493,31 +514,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f491f777-d711-4afa-9853-845b7e70dba6"
+ "27a9f6f8-565f-47dc-87fe-12403ddac26d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14985"
],
"x-ms-correlation-request-id": [
- "dee9c12c-85b9-4a28-a928-d9ed7010705d"
+ "364cfd1b-6845-4957-9581-08461c60a09a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025428Z:dee9c12c-85b9-4a28-a928-d9ed7010705d"
+ "AUSTRALIAEAST:20180607T131958Z:364cfd1b-6845-4957-9581-08461c60a09a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:28 GMT"
+ "Thu, 07 Jun 2018 13:19:57 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -532,28 +550,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13930931-be03-4577-9fc6-0edcfffbd133"
+ "05e7f950-60a3-4089-bbb5-c6e136efc17e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9266.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6af1424f-e7bd-4b0a-9e3f-0133932d0a42\",\r\n \"creationTime\": \"2017-12-07T02:53:56.792425Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:54:29.8299709Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266\",\r\n \"name\": \"ps9266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps411.azuredatalakeanalytics.net\",\r\n \"accountId\": \"45e1b708-631e-401b-a608-20e9cde9b3a8\",\r\n \"creationTime\": \"2018-06-07T13:19:21.0075185Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:20:00.5448826Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411\",\r\n \"name\": \"ps411\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1225"
+ "1244"
],
"Content-Type": [
"application/json"
@@ -565,31 +583,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d75aa7b6-ec94-4b63-a6bd-d71c414c85ef"
+ "654f3f57-968e-4263-b2c5-50c273573d22"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14978"
],
"x-ms-correlation-request-id": [
- "222accac-3e4b-4edd-ae13-7ddde265dde8"
+ "417ab036-ac47-45aa-b7f8-114c30c4dfa2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025507Z:222accac-3e4b-4edd-ae13-7ddde265dde8"
+ "AUSTRALIAEAST:20180607T132042Z:417ab036-ac47-45aa-b7f8-114c30c4dfa2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:06 GMT"
+ "Thu, 07 Jun 2018 13:20:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -610,25 +625,25 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d78705b-b5e7-4cef-911f-3c4469a59659"
+ "2f694f05-9c5a-4097-a3fd-0322054f10ea"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "528"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -636,65 +651,53 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "0a262ae6-3681-4a6c-b0b8-f5330c4756b5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "76dc2f59-f6fa-4bd9-8c76-dc5e53c302eb"
],
"x-ms-correlation-request-id": [
- "d4cbe14b-232b-417b-b16f-576d075ec6c6"
+ "76dc2f59-f6fa-4bd9-8c76-dc5e53c302eb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025314Z:d4cbe14b-232b-417b-b16f-576d075ec6c6"
+ "AUSTRALIAEAST:20180607T131829Z:76dc2f59-f6fa-4bd9-8c76-dc5e53c302eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:14 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 13:18:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae2b1997-eebe-496b-b603-f758bc1dac45"
+ "db6b6356-5fe3-4ee7-997a-566bd3064fd0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps4749' under resource group 'ps5563' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps6345' under resource group 'ps4864' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -712,43 +715,46 @@
"gateway"
],
"x-ms-request-id": [
- "0e8e6f87-1007-45c0-b719-00fdab3d1145"
+ "a94def2c-e193-4ff2-8ba6-37de4da28f12"
],
"x-ms-correlation-request-id": [
- "0e8e6f87-1007-45c0-b719-00fdab3d1145"
+ "a94def2c-e193-4ff2-8ba6-37de4da28f12"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025314Z:0e8e6f87-1007-45c0-b719-00fdab3d1145"
+ "AUSTRALIAEAST:20180607T131831Z:a94def2c-e193-4ff2-8ba6-37de4da28f12"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:14 GMT"
+ "Thu, 07 Jun 2018 13:18:31 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4749.azuredatalakestore.net\",\r\n \"accountId\": \"e65e9597-db5c-4107-bd11-3c072e51fc97\",\r\n \"creationTime\": \"2017-12-07T02:53:19.6952463Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:53:19.6952463Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a66f3b68-f0f8-44a8-bcf2-a818289ee10e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749\",\r\n \"name\": \"ps4749\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6345.azuredatalakestore.net\",\r\n \"accountId\": \"25df7118-bfcd-4227-88c4-f6345174c261\",\r\n \"creationTime\": \"2018-06-07T13:18:39.7622993Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:18:39.7622993Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c4157dee-36bf-4c3b-8b05-e4f28fb6f717\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345\",\r\n \"name\": \"ps6345\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -760,31 +766,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f005e243-94b3-4249-8d0b-90d7071e0689"
+ "d84cfeaa-79a5-42a2-b165-020c0f827197"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14992"
],
"x-ms-correlation-request-id": [
- "b6a691e7-5015-4125-9070-9545c712909c"
+ "e59a0449-872d-408e-a158-5b9c9c2e8fe9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025351Z:b6a691e7-5015-4125-9070-9545c712909c"
+ "AUSTRALIAEAST:20180607T131913Z:e59a0449-872d-408e-a158-5b9c9c2e8fe9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:51 GMT"
+ "Thu, 07 Jun 2018 13:19:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -799,28 +802,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "efb4f0ba-033a-4e0c-98f3-173942976327"
+ "50a3c63f-542e-49b1-a640-39cda509a157"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4749.azuredatalakestore.net\",\r\n \"accountId\": \"e65e9597-db5c-4107-bd11-3c072e51fc97\",\r\n \"creationTime\": \"2017-12-07T02:53:19.6952463Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:53:19.6952463Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a66f3b68-f0f8-44a8-bcf2-a818289ee10e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749\",\r\n \"name\": \"ps4749\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6345.azuredatalakestore.net\",\r\n \"accountId\": \"25df7118-bfcd-4227-88c4-f6345174c261\",\r\n \"creationTime\": \"2018-06-07T13:18:39.7622993Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:18:39.7622993Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c4157dee-36bf-4c3b-8b05-e4f28fb6f717\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345\",\r\n \"name\": \"ps6345\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -832,31 +835,28 @@
"no-cache"
],
"x-ms-request-id": [
- "aa60154b-8908-4212-98be-32b9f8168604"
+ "fd40d681-cae6-476e-95f2-2ee18b9432ad"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14991"
],
"x-ms-correlation-request-id": [
- "87be208b-bb0c-40c1-8c68-dc306fcbda27"
+ "bc8e434e-5dd8-4377-930a-1b3db64992ce"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025525Z:87be208b-bb0c-40c1-8c68-dc306fcbda27"
+ "AUSTRALIAEAST:20180607T132053Z:bc8e434e-5dd8-4377-930a-1b3db64992ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:25 GMT"
+ "Thu, 07 Jun 2018 13:20:53 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -871,34 +871,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "e8d2aeac-fde2-4b3c-b62b-b6fd46fe04cd"
+ "45c3314f-7ff5-419e-87bf-30d6f2f04dfc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e65e9597-db5c-4107-bd11-3c072e51fc97\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749\",\r\n \"name\": \"ps4749\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"25df7118-bfcd-4227-88c4-f6345174c261\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345\",\r\n \"name\": \"ps6345\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -913,37 +913,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e65e9597-db5c-4107-bd11-3c072e51fc970?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/25df7118-bfcd-4227-88c4-f6345174c2610?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "2938136c-d33f-4783-b78f-f00f49c34f23"
+ "78eba649-4c1f-48d7-9689-933bf8d241e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "134aa984-e5b7-4c96-a9e2-07ecdd326718"
+ "f6e0acf1-50d5-473c-8dfa-59653c0a2157"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025319Z:134aa984-e5b7-4c96-a9e2-07ecdd326718"
+ "AUSTRALIAEAST:20180607T131838Z:f6e0acf1-50d5-473c-8dfa-59653c0a2157"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:18 GMT"
+ "Thu, 07 Jun 2018 13:18:37 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -958,13 +955,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e65e9597-db5c-4107-bd11-3c072e51fc970?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U2NWU5NTk3LWRiNWMtNDEwNy1iZDExLTNjMDcyZTUxZmM5NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/25df7118-bfcd-4227-88c4-f6345174c2610?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzI1ZGY3MTE4LWJmY2QtNDIyNy04OGM0LWY2MzQ1MTc0YzI2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -985,31 +982,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0b150acf-02d0-40ab-abdf-9ef1bccd3f88"
+ "c555a73f-c4a8-4888-b42f-213428005e4d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14995"
],
"x-ms-correlation-request-id": [
- "cc1231e1-7f9b-4336-a341-e7e8b09e665b"
+ "049bbbb3-2bfa-4c8b-84bf-59cebf57136a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025329Z:cc1231e1-7f9b-4336-a341-e7e8b09e665b"
+ "AUSTRALIAEAST:20180607T131850Z:049bbbb3-2bfa-4c8b-84bf-59cebf57136a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:29 GMT"
+ "Thu, 07 Jun 2018 13:18:49 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1024,13 +1018,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e65e9597-db5c-4107-bd11-3c072e51fc970?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U2NWU5NTk3LWRiNWMtNDEwNy1iZDExLTNjMDcyZTUxZmM5NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/25df7118-bfcd-4227-88c4-f6345174c2610?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzI1ZGY3MTE4LWJmY2QtNDIyNy04OGM0LWY2MzQ1MTc0YzI2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1051,31 +1045,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9b0b94a1-3f8e-4f24-9cb4-ffa1f964b76c"
+ "6acd42b8-8b16-467b-8931-864a1c348235"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14994"
],
"x-ms-correlation-request-id": [
- "b39ffa83-57e8-4935-812a-460744a0dfc6"
+ "34d4c8e9-3281-4dd7-9d52-ed67c5875bda"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025340Z:b39ffa83-57e8-4935-812a-460744a0dfc6"
+ "AUSTRALIAEAST:20180607T131901Z:34d4c8e9-3281-4dd7-9d52-ed67c5875bda"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:39 GMT"
+ "Thu, 07 Jun 2018 13:19:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1090,13 +1081,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e65e9597-db5c-4107-bd11-3c072e51fc970?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U2NWU5NTk3LWRiNWMtNDEwNy1iZDExLTNjMDcyZTUxZmM5NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/25df7118-bfcd-4227-88c4-f6345174c2610?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzI1ZGY3MTE4LWJmY2QtNDIyNy04OGM0LWY2MzQ1MTc0YzI2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1117,31 +1108,28 @@
"no-cache"
],
"x-ms-request-id": [
- "51f3707c-9e3d-4609-9757-e9a21752fe66"
+ "66ee3ee7-ee2a-4096-9767-2a965bba0c4a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14993"
],
"x-ms-correlation-request-id": [
- "179cc39b-d442-41d0-b26f-a4d6bad03175"
+ "55d19587-82a9-4636-a319-5c607523f8ca"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025351Z:179cc39b-d442-41d0-b26f-a4d6bad03175"
+ "AUSTRALIAEAST:20180607T131912Z:55d19587-82a9-4636-a319-5c607523f8ca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:50 GMT"
+ "Thu, 07 Jun 2018 13:19:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1156,34 +1144,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps4749\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps6345\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "d4003217-69ef-4eb2-b2eb-26c63dcb1a07"
+ "3a84083e-4079-4f7f-8697-bc3d1ed7ff83"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"6af1424f-e7bd-4b0a-9e3f-0133932d0a42\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266\",\r\n \"name\": \"ps9266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"45e1b708-631e-401b-a608-20e9cde9b3a8\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411\",\r\n \"name\": \"ps411\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "485"
],
"Content-Type": [
"application/json"
@@ -1198,37 +1186,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6af1424f-e7bd-4b0a-9e3f-0133932d0a420?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/45e1b708-631e-401b-a608-20e9cde9b3a80?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "4a30cae2-ad18-4ec8-ac0c-525d72c9a1da"
+ "e9c249c0-b3ee-422f-818b-c1b85d59be16"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "ded0e129-ce68-4ff9-85f2-697c9e760ff0"
+ "a20d5743-1c06-47d1-a476-c6fe97639a9f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025354Z:ded0e129-ce68-4ff9-85f2-697c9e760ff0"
+ "AUSTRALIAEAST:20180607T131919Z:a20d5743-1c06-47d1-a476-c6fe97639a9f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:53:54 GMT"
+ "Thu, 07 Jun 2018 13:19:19 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1243,16 +1228,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6af1424f-e7bd-4b0a-9e3f-0133932d0a420?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82YWYxNDI0Zi1lN2JkLTRiMGEtOWUzZi0wMTMzOTMyZDBhNDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/45e1b708-631e-401b-a608-20e9cde9b3a80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80NWUxYjcwOC02MzFlLTQwMWItYTYwOC0yMGU5Y2RlOWIzYTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1270,31 +1255,28 @@
"no-cache"
],
"x-ms-request-id": [
- "413f0469-8e11-46c5-b16b-df38128b5b9c"
+ "efb9d26e-7475-4e11-a10d-f131376a3227"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14990"
],
"x-ms-correlation-request-id": [
- "b1bcf481-57e7-42a0-8a23-31540bae4af6"
+ "0812e77e-dffe-4963-8544-4569aa3d4401"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025405Z:b1bcf481-57e7-42a0-8a23-31540bae4af6"
+ "AUSTRALIAEAST:20180607T131931Z:0812e77e-dffe-4963-8544-4569aa3d4401"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:04 GMT"
+ "Thu, 07 Jun 2018 13:19:30 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1309,16 +1291,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6af1424f-e7bd-4b0a-9e3f-0133932d0a420?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82YWYxNDI0Zi1lN2JkLTRiMGEtOWUzZi0wMTMzOTMyZDBhNDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/45e1b708-631e-401b-a608-20e9cde9b3a80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80NWUxYjcwOC02MzFlLTQwMWItYTYwOC0yMGU5Y2RlOWIzYTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1336,31 +1318,28 @@
"no-cache"
],
"x-ms-request-id": [
- "155d65cd-567c-496d-a017-1002acfdc1ce"
+ "126a4c1d-65d2-4140-b2bb-cb7af5033e28"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14989"
],
"x-ms-correlation-request-id": [
- "621d3442-4ed8-426a-856a-93c86b114e9d"
+ "33e8d21c-9282-443c-999c-e01316f18195"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025415Z:621d3442-4ed8-426a-856a-93c86b114e9d"
+ "AUSTRALIAEAST:20180607T131942Z:33e8d21c-9282-443c-999c-e01316f18195"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:15 GMT"
+ "Thu, 07 Jun 2018 13:19:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1375,16 +1354,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6af1424f-e7bd-4b0a-9e3f-0133932d0a420?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82YWYxNDI0Zi1lN2JkLTRiMGEtOWUzZi0wMTMzOTMyZDBhNDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/45e1b708-631e-401b-a608-20e9cde9b3a80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80NWUxYjcwOC02MzFlLTQwMWItYTYwOC0yMGU5Y2RlOWIzYTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1402,31 +1381,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ae1f8e3d-f9ab-44f8-8646-a87ebdefc4e9"
+ "f819bbc1-0564-46cb-82a4-dcd6c0a611ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14988"
],
"x-ms-correlation-request-id": [
- "8b5a64ad-e712-4408-a17b-9167287f8ee3"
+ "f8349574-d78e-419b-bb28-7383eb42e8dc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025426Z:8b5a64ad-e712-4408-a17b-9167287f8ee3"
+ "AUSTRALIAEAST:20180607T131954Z:f8349574-d78e-419b-bb28-7383eb42e8dc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:25 GMT"
+ "Thu, 07 Jun 2018 13:19:53 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1441,10 +1417,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"firewallState\": \"Disabled\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"newTier\": \"Commitment_100AUHours\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1453,22 +1429,22 @@
"117"
],
"x-ms-client-request-id": [
- "ec12a3c6-43ec-46ff-895a-455a23f4c873"
+ "f16fcc37-b770-4916-99bd-eb9d1230ce61"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9266.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6af1424f-e7bd-4b0a-9e3f-0133932d0a42\",\r\n \"creationTime\": \"2017-12-07T02:53:56.792425Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:54:29.8299709Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266\",\r\n \"name\": \"ps9266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps411.azuredatalakeanalytics.net\",\r\n \"accountId\": \"45e1b708-631e-401b-a608-20e9cde9b3a8\",\r\n \"creationTime\": \"2018-06-07T13:19:21.0075185Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:20:00.5448826Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411\",\r\n \"name\": \"ps411\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "957"
+ "976"
],
"Content-Type": [
"application/json"
@@ -1480,31 +1456,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9aa154bb-a51a-42d9-a4c0-db45a4c8381c"
+ "75f5b590-55f6-4d0f-b549-cc606dae508e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "64958a51-3291-4034-818e-fd89b65f8da6"
+ "95e69416-ecd0-4af9-b136-80730628c3f0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025430Z:64958a51-3291-4034-818e-fd89b65f8da6"
+ "AUSTRALIAEAST:20180607T132001Z:95e69416-ecd0-4af9-b136-80730628c3f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:29 GMT"
+ "Thu, 07 Jun 2018 13:20:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1519,28 +1492,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83ac5dac-b5e9-4714-8ca3-bb75549f2161"
+ "5c6330ba-6156-4794-b329-340a70afa875"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps3326' under resource group 'ps5563' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps170' under resource group 'ps4864' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "152"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1555,49 +1528,52 @@
"gateway"
],
"x-ms-request-id": [
- "6d3135cc-7730-4f11-8bf8-cc3667276128"
+ "0655c22d-0e5f-4b39-b1c0-a7adcaad7c6d"
],
"x-ms-correlation-request-id": [
- "6d3135cc-7730-4f11-8bf8-cc3667276128"
+ "0655c22d-0e5f-4b39-b1c0-a7adcaad7c6d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025430Z:6d3135cc-7730-4f11-8bf8-cc3667276128"
+ "AUSTRALIAEAST:20180607T132001Z:0655c22d-0e5f-4b39-b1c0-a7adcaad7c6d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:30 GMT"
+ "Thu, 07 Jun 2018 13:20:01 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a6938baf-5df5-4f06-848e-e4d839a5eae3"
+ "79828d33-ced0-49d4-8bb6-8f741a986ea5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps3326' under resource group 'ps5563' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps170' under resource group 'ps4864' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "152"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1612,43 +1588,46 @@
"gateway"
],
"x-ms-request-id": [
- "3e54c188-4cd7-4697-b64d-e7e5860588a2"
+ "f81ee967-a4db-459c-9de6-b70349bddd8e"
],
"x-ms-correlation-request-id": [
- "3e54c188-4cd7-4697-b64d-e7e5860588a2"
+ "f81ee967-a4db-459c-9de6-b70349bddd8e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025431Z:3e54c188-4cd7-4697-b64d-e7e5860588a2"
+ "AUSTRALIAEAST:20180607T132002Z:f81ee967-a4db-459c-9de6-b70349bddd8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:30 GMT"
+ "Thu, 07 Jun 2018 13:20:01 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b9c6d8fa-cb32-4357-8fd6-61d8536955a0\",\r\n \"creationTime\": \"2017-12-07T02:54:34.7973415Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:54:34.7973415Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326\",\r\n \"name\": \"ps3326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps170.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f52da27b-4aa6-486b-8840-59fd8aed55ae\",\r\n \"creationTime\": \"2018-06-07T13:20:06.4298295Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:20:06.4298295Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170\",\r\n \"name\": \"ps170\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1236"
+ "1254"
],
"Content-Type": [
"application/json"
@@ -1660,31 +1639,28 @@
"no-cache"
],
"x-ms-request-id": [
- "76b7ba90-8c08-4221-bec3-96d5b3d93410"
+ "e719aeb4-fdd9-4b48-a93f-85b0176970d8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14968"
+ "14979"
],
"x-ms-correlation-request-id": [
- "b7bb2d4b-317f-4544-ac76-d1eadff49712"
+ "e133a209-7690-4948-beb1-781acc7c3dd7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025506Z:b7bb2d4b-317f-4544-ac76-d1eadff49712"
+ "AUSTRALIAEAST:20180607T132041Z:e133a209-7690-4948-beb1-781acc7c3dd7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:05 GMT"
+ "Thu, 07 Jun 2018 13:20:40 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1699,28 +1675,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d749f28f-4c71-42d5-8efe-6bea2fd7498b"
+ "d0048964-5916-4afe-9e4b-ec44f030fd7e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b9c6d8fa-cb32-4357-8fd6-61d8536955a0\",\r\n \"creationTime\": \"2017-12-07T02:54:34.7973415Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:54:34.7973415Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326\",\r\n \"name\": \"ps3326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps170.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f52da27b-4aa6-486b-8840-59fd8aed55ae\",\r\n \"creationTime\": \"2018-06-07T13:20:06.4298295Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:20:06.4298295Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170\",\r\n \"name\": \"ps170\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1236"
+ "1254"
],
"Content-Type": [
"application/json"
@@ -1732,31 +1708,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4b460133-a4c8-42c2-a201-16c68192068c"
+ "867ac79f-e219-4a28-b617-118880878355"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14977"
],
"x-ms-correlation-request-id": [
- "b7354a8b-e369-4ae9-b02c-e6fc1c9b728a"
+ "4f387947-9d0e-4feb-858c-7eb1a9a8315b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025521Z:b7354a8b-e369-4ae9-b02c-e6fc1c9b728a"
+ "AUSTRALIAEAST:20180607T132047Z:4f387947-9d0e-4feb-858c-7eb1a9a8315b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:21 GMT"
+ "Thu, 07 Jun 2018 13:20:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1771,34 +1744,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "241"
+ "239"
],
"x-ms-client-request-id": [
- "2853ebd3-4951-4774-8464-7c15dcfcb9dc"
+ "98723e73-e6ea-4d15-abfe-d9ad8e5abc7d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps4749\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps4749\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b9c6d8fa-cb32-4357-8fd6-61d8536955a0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326\",\r\n \"name\": \"ps3326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps6345\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6345\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f52da27b-4aa6-486b-8840-59fd8aed55ae\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170\",\r\n \"name\": \"ps170\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "523"
+ "519"
],
"Content-Type": [
"application/json"
@@ -1813,37 +1786,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b9c6d8fa-cb32-4357-8fd6-61d8536955a00?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/f52da27b-4aa6-486b-8840-59fd8aed55ae0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "e688864a-e999-408a-b129-b7c01d873381"
+ "9dbef8b2-65ac-4150-bd2b-b053ea6d0d98"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "fecebcf0-fc71-423b-846b-e643e0612d5b"
+ "633fe915-b6c5-4a49-898d-42aa0824da69"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025433Z:fecebcf0-fc71-423b-846b-e643e0612d5b"
+ "AUSTRALIAEAST:20180607T132005Z:633fe915-b6c5-4a49-898d-42aa0824da69"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:33 GMT"
+ "Thu, 07 Jun 2018 13:20:05 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1858,16 +1828,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b9c6d8fa-cb32-4357-8fd6-61d8536955a00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iOWM2ZDhmYS1jYjMyLTQzNTctOGZkNi02MWQ4NTM2OTU1YTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/f52da27b-4aa6-486b-8840-59fd8aed55ae0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9mNTJkYTI3Yi00YWE2LTQ4NmItODg0MC01OWZkOGFlZDU1YWUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1885,31 +1855,28 @@
"no-cache"
],
"x-ms-request-id": [
- "efa80143-4031-4e6a-928d-3438e8fb92bb"
+ "803df68f-96bc-4003-b5cb-6294c88306ee"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14982"
],
"x-ms-correlation-request-id": [
- "924b1dd2-3247-41fd-a5ad-8f0095df5a01"
+ "873ba9c9-4770-4423-a6f2-6b165b9a16d3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025444Z:924b1dd2-3247-41fd-a5ad-8f0095df5a01"
+ "AUSTRALIAEAST:20180607T132017Z:873ba9c9-4770-4423-a6f2-6b165b9a16d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:43 GMT"
+ "Thu, 07 Jun 2018 13:20:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1924,16 +1891,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b9c6d8fa-cb32-4357-8fd6-61d8536955a00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iOWM2ZDhmYS1jYjMyLTQzNTctOGZkNi02MWQ4NTM2OTU1YTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/f52da27b-4aa6-486b-8840-59fd8aed55ae0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9mNTJkYTI3Yi00YWE2LTQ4NmItODg0MC01OWZkOGFlZDU1YWUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1951,31 +1918,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e4855238-9114-45ad-a18a-4e02c0bb0cc4"
+ "374ca70d-d9c2-4572-b839-96e54da0ba09"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14981"
],
"x-ms-correlation-request-id": [
- "ad1f8280-761a-4a04-82ff-9468ca477f6c"
+ "e331d773-ba64-4c85-80e6-d449f3df8541"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025454Z:ad1f8280-761a-4a04-82ff-9468ca477f6c"
+ "AUSTRALIAEAST:20180607T132028Z:e331d773-ba64-4c85-80e6-d449f3df8541"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:54:54 GMT"
+ "Thu, 07 Jun 2018 13:20:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1990,16 +1954,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b9c6d8fa-cb32-4357-8fd6-61d8536955a00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iOWM2ZDhmYS1jYjMyLTQzNTctOGZkNi02MWQ4NTM2OTU1YTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/f52da27b-4aa6-486b-8840-59fd8aed55ae0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9mNTJkYTI3Yi00YWE2LTQ4NmItODg0MC01OWZkOGFlZDU1YWUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -2017,31 +1981,28 @@
"no-cache"
],
"x-ms-request-id": [
- "79a98b49-db94-4dad-961b-ca0594ac2deb"
+ "9e2662e7-5cae-4984-afda-f936e6ffe30d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14980"
],
"x-ms-correlation-request-id": [
- "5d30ada1-c03d-432f-a113-d16bcb16d9e0"
+ "0a2975d0-6e39-44fe-85bc-25fef208a7cd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025505Z:5d30ada1-c03d-432f-a113-d16bcb16d9e0"
+ "AUSTRALIAEAST:20180607T132039Z:0a2975d0-6e39-44fe-85bc-25fef208a7cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:05 GMT"
+ "Thu, 07 Jun 2018 13:20:39 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2056,22 +2017,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTI2Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps411?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b691aaf3-e023-4bc6-9ee5-d14673aa6612"
+ "c22aa7f8-2aef-4ab2-b51c-de0dbe361222"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2085,38 +2046,29 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6af1424f-e7bd-4b0a-9e3f-0133932d0a422?api-version=2016-11-01&expanded=true"
- ],
"x-ms-request-id": [
- "8cfe205d-96b4-4a10-adbf-6cd2273d74de"
+ "1b9cf560-0921-4c0c-9069-dce3739b9967"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "b196b691-2248-4574-9dd5-c5879c3ca211"
+ "916c6063-e977-4921-ba89-4bdf740db8b4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025510Z:b196b691-2248-4574-9dd5-c5879c3ca211"
+ "AUSTRALIAEAST:20180607T132046Z:916c6063-e977-4921-ba89-4bdf740db8b4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:09 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps9266/operationresults/2?api-version=2016-11-01"
+ "Thu, 07 Jun 2018 13:20:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2128,28 +2080,31 @@
"ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6af1424f-e7bd-4b0a-9e3f-0133932d0a422?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82YWYxNDI0Zi1lN2JkLTRiMGEtOWUzZi0wMTMzOTMyZDBhNDIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeAnalytics/accounts/ps170?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTcwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "91013145-2606-4b73-be25-4403603a14db"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -2158,31 +2113,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7aa12835-eefc-43fc-a1b8-6a946423312f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "94c057e8-878d-4e01-a478-accdb63a0c2d"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "08faa767-96b3-4473-aabf-ec99118cea4e"
+ "8d9096b5-f860-419a-b792-8066df64a3a9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025521Z:08faa767-96b3-4473-aabf-ec99118cea4e"
+ "AUSTRALIAEAST:20180607T132052Z:8d9096b5-f860-419a-b792-8066df64a3a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:20 GMT"
+ "Thu, 07 Jun 2018 13:20:51 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2197,22 +2149,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeAnalytics/accounts/ps3326?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "877d9870-bac7-4ba0-b381-be081648be18"
+ "52384c48-a4c8-4249-960f-ea808d6694f5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
"ResponseBody": "",
@@ -2226,29 +2178,38 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/25df7118-bfcd-4227-88c4-f6345174c2611?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "cf6359cc-854d-49f3-981c-94f9356e5e91"
+ "906d05de-d7b3-44b7-a121-442e112db7d3"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "28f1f3ab-120d-4b37-8eca-5f960dc14fbd"
+ "59689c02-1355-48a7-bba5-ba5a45afc473"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025525Z:28f1f3ab-120d-4b37-8eca-5f960dc14fbd"
+ "AUSTRALIAEAST:20180607T132057Z:59689c02-1355-48a7-bba5-ba5a45afc473"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:25 GMT"
+ "Thu, 07 Jun 2018 13:20:57 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345/operationresults/1?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2260,31 +2221,28 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTU2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/25df7118-bfcd-4227-88c4-f6345174c2611?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzI1ZGY3MTE4LWJmY2QtNDIyNy04OGM0LWY2MzQ1MTc0YzI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "dcff9d94-5acf-49c4-af93-8ae9529b3065"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
@@ -2292,38 +2250,29 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e65e9597-db5c-4107-bd11-3c072e51fc971?api-version=2016-11-01&expanded=true"
- ],
"x-ms-request-id": [
- "73f5d6dd-5994-4470-90d6-d68c0ca2afd3"
+ "142ad317-641f-4652-b02b-f7bb0cc0d45b"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
],
"x-ms-correlation-request-id": [
- "37d57768-0d46-4da5-8a84-29b89e1917f2"
+ "7db0d804-8c3b-4c78-b5c7-8ddae383372f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025528Z:37d57768-0d46-4da5-8a84-29b89e1917f2"
+ "AUSTRALIAEAST:20180607T132109Z:7db0d804-8c3b-4c78-b5c7-8ddae383372f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:28 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5563/providers/Microsoft.DataLakeStore/accounts/ps4749/operationresults/1?api-version=2016-11-01"
+ "Thu, 07 Jun 2018 13:21:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2335,28 +2284,25 @@
"ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e65e9597-db5c-4107-bd11-3c072e51fc971?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U2NWU5NTk3LWRiNWMtNDEwNy1iZDExLTNjMDcyZTUxZmM5NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4864/providers/Microsoft.DataLakeStore/accounts/ps6345/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDg2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MzQ1L29wZXJhdGlvbnJlc3VsdHMvMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -2365,31 +2311,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a71f2a69-22ca-48ee-aa0f-1872229f7e17"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "3512076d-def6-423c-8c4d-4152b5fb7705"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14989"
],
"x-ms-correlation-request-id": [
- "69d12a3b-66f1-4984-9edb-82e0061e9010"
+ "8e5dbdce-095c-409b-9328-42c540997ca2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025539Z:69d12a3b-66f1-4984-9edb-82e0061e9010"
+ "AUSTRALIAEAST:20180607T132110Z:8e5dbdce-095c-409b-9328-42c540997ca2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:38 GMT"
+ "Thu, 07 Jun 2018 13:21:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2401,16 +2344,25 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5563?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTU2Mz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4864?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDg2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d47fe611-5a7d-4fe7-99de-d8c5d2695366"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2427,44 +2379,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-request-id": [
- "8b11b83d-a99f-4054-adaa-178d31273d50"
+ "42baaba1-cbc8-457b-a4bc-6252c8155a95"
],
"x-ms-correlation-request-id": [
- "8b11b83d-a99f-4054-adaa-178d31273d50"
+ "42baaba1-cbc8-457b-a4bc-6252c8155a95"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025542Z:8b11b83d-a99f-4054-adaa-178d31273d50"
+ "AUSTRALIAEAST:20180607T132113Z:42baaba1-cbc8-457b-a4bc-6252c8155a95"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:41 GMT"
+ "Thu, 07 Jun 2018 13:21:13 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NjMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NjMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5qTXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2482,43 +2437,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14988"
],
"x-ms-request-id": [
- "fcc4712a-c0de-4ea7-ba36-3f413de4c6e3"
+ "372dd6bc-2091-4a3b-820c-cf8b33f79aae"
],
"x-ms-correlation-request-id": [
- "fcc4712a-c0de-4ea7-ba36-3f413de4c6e3"
+ "372dd6bc-2091-4a3b-820c-cf8b33f79aae"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025542Z:fcc4712a-c0de-4ea7-ba36-3f413de4c6e3"
+ "AUSTRALIAEAST:20180607T132129Z:372dd6bc-2091-4a3b-820c-cf8b33f79aae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:42 GMT"
+ "Thu, 07 Jun 2018 13:21:28 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NjMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NjMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5qTXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2536,43 +2494,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14987"
],
"x-ms-request-id": [
- "b52b763b-c6b1-4cbd-8ddd-05fba30382f3"
+ "bd23e609-2cf5-44cc-b6e7-3a3490f7f3c8"
],
"x-ms-correlation-request-id": [
- "b52b763b-c6b1-4cbd-8ddd-05fba30382f3"
+ "bd23e609-2cf5-44cc-b6e7-3a3490f7f3c8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025557Z:b52b763b-c6b1-4cbd-8ddd-05fba30382f3"
+ "AUSTRALIAEAST:20180607T132144Z:bd23e609-2cf5-44cc-b6e7-3a3490f7f3c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:55:57 GMT"
+ "Thu, 07 Jun 2018 13:21:44 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NjMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NjMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5qTXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2586,47 +2547,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14986"
],
"x-ms-request-id": [
- "0cb2bda3-5da7-4277-b21e-0b9be1ef4efb"
+ "520379cc-edb1-4e74-ac38-e0abcd50a13f"
],
"x-ms-correlation-request-id": [
- "0cb2bda3-5da7-4277-b21e-0b9be1ef4efb"
+ "520379cc-edb1-4e74-ac38-e0abcd50a13f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025613Z:0cb2bda3-5da7-4277-b21e-0b9be1ef4efb"
+ "AUSTRALIAEAST:20180607T132200Z:520379cc-edb1-4e74-ac38-e0abcd50a13f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:56:12 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NjMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 13:21:59 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NjMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5qTXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2641,25 +2599,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14985"
],
"x-ms-request-id": [
- "3b2c68c0-1806-49e6-8136-e796982cd9d7"
+ "bb77c8e1-fac8-41e1-b2a2-c8bfeb54ab4f"
],
"x-ms-correlation-request-id": [
- "3b2c68c0-1806-49e6-8136-e796982cd9d7"
+ "bb77c8e1-fac8-41e1-b2a2-c8bfeb54ab4f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T025628Z:3b2c68c0-1806-49e6-8136-e796982cd9d7"
+ "AUSTRALIAEAST:20180607T132200Z:bb77c8e1-fac8-41e1-b2a2-c8bfeb54ab4f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:56:27 GMT"
+ "Thu, 07 Jun 2018 13:22:00 GMT"
]
},
"StatusCode": 200
@@ -2667,12 +2628,12 @@
],
"Names": {
"": [
- "ps5563",
- "ps9266",
- "ps4749"
+ "ps4864",
+ "ps411",
+ "ps6345"
],
"Test-DataLakeAnalyticsAccountTiers": [
- "ps3326"
+ "ps170"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaCatalog.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaCatalog.json
index 03c2072077b2..abd9d05970cd 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaCatalog.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaCatalog.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,32 +25,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-request-id": [
- "75965c41-b368-4d01-8855-e166bb62f6c6"
+ "156ee776-08e9-44d4-92de-e642607b431f"
],
"x-ms-correlation-request-id": [
- "75965c41-b368-4d01-8855-e166bb62f6c6"
+ "156ee776-08e9-44d4-92de-e642607b431f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000621Z:75965c41-b368-4d01-8855-e166bb62f6c6"
+ "AUSTRALIAEAST:20180619T103940Z:156ee776-08e9-44d4-92de-e642607b431f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:06:21 GMT"
+ "Tue, 19 Jun 2018 10:39:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14999"
],
"x-ms-request-id": [
- "d81fc17f-c575-4d69-be86-818ea7966d95"
+ "b0f667fe-0ebb-4dd4-ac1a-522a4d13a472"
],
"x-ms-correlation-request-id": [
- "d81fc17f-c575-4d69-be86-818ea7966d95"
+ "b0f667fe-0ebb-4dd4-ac1a-522a4d13a472"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000622Z:d81fc17f-c575-4d69-be86-818ea7966d95"
+ "AUSTRALIAEAST:20180619T103940Z:b0f667fe-0ebb-4dd4-ac1a-522a4d13a472"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:06:21 GMT"
+ "Tue, 19 Jun 2018 10:39:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3232?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMzIzMj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4621?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDYyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "2e443fce-f461-4eb8-bc7c-0f5976347e3a"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232\",\r\n \"name\": \"ps3232\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621\",\r\n \"name\": \"ps4621\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,49 +142,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-request-id": [
- "2e200e76-865c-4f89-918a-69d30a104034"
+ "4c801a15-702e-48b9-b0f8-57977d3d5513"
],
"x-ms-correlation-request-id": [
- "2e200e76-865c-4f89-918a-69d30a104034"
+ "4c801a15-702e-48b9-b0f8-57977d3d5513"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000628Z:2e200e76-865c-4f89-918a-69d30a104034"
+ "AUSTRALIAEAST:20180619T103951Z:4c801a15-702e-48b9-b0f8-57977d3d5513"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:06:27 GMT"
+ "Tue, 19 Jun 2018 10:39:50 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMzE2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64fff7f6-cef5-4cea-9b36-b37813690740"
+ "f6cb4d2f-65a2-4d7c-ad2b-34fb53a6060e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps2316' under resource group 'ps3232' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps9941' under resource group 'ps4621' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -187,43 +205,46 @@
"gateway"
],
"x-ms-request-id": [
- "28a37a96-a8cb-4007-94e6-6ced4daadba6"
+ "e369020f-5f9f-443f-aee2-e57ec548889a"
],
"x-ms-correlation-request-id": [
- "28a37a96-a8cb-4007-94e6-6ced4daadba6"
+ "e369020f-5f9f-443f-aee2-e57ec548889a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000628Z:28a37a96-a8cb-4007-94e6-6ced4daadba6"
+ "AUSTRALIAEAST:20180619T103953Z:e369020f-5f9f-443f-aee2-e57ec548889a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:06:27 GMT"
+ "Tue, 19 Jun 2018 10:39:53 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMzE2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2316.azuredatalakestore.net\",\r\n \"accountId\": \"62160f91-75f0-49f6-8d72-4d53ac44d1df\",\r\n \"creationTime\": \"2018-02-09T00:06:36.6149975Z\",\r\n \"lastModifiedTime\": \"2018-02-09T00:06:36.6149975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"afb0882e-03d6-42a0-87f1-73d31019ce6c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316\",\r\n \"name\": \"ps2316\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9941.azuredatalakestore.net\",\r\n \"accountId\": \"3dc38087-3fa0-46e5-a60c-4212031eaa98\",\r\n \"creationTime\": \"2018-06-19T10:40:01.4209599Z\",\r\n \"lastModifiedTime\": \"2018-06-19T10:40:01.4209599Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"92b3ae67-e6f3-47fd-9ec5-231156d4633e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941\",\r\n \"name\": \"ps9941\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "952"
+ "992"
],
"Content-Type": [
"application/json"
@@ -235,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7fe6819a-59e4-4998-b482-0cbb47a6a083"
+ "6c1055fa-1974-4941-be92-a2f5120d9c19"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14992"
],
"x-ms-correlation-request-id": [
- "78208e93-0564-4737-aeb1-fc7ef21dab9c"
+ "f9a535fe-7323-4113-b831-0b50b8e1c23d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000704Z:78208e93-0564-4737-aeb1-fc7ef21dab9c"
+ "AUSTRALIAEAST:20180619T104036Z:f9a535fe-7323-4113-b831-0b50b8e1c23d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:04 GMT"
+ "Tue, 19 Jun 2018 10:40:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -274,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMzE2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "acf48833-c28d-431b-a705-5359d9ac6b33"
+ "5ec660e4-61a0-433d-b46c-3baab81c3b9b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2316.azuredatalakestore.net\",\r\n \"accountId\": \"62160f91-75f0-49f6-8d72-4d53ac44d1df\",\r\n \"creationTime\": \"2018-02-09T00:06:36.6149975Z\",\r\n \"lastModifiedTime\": \"2018-02-09T00:06:36.6149975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"afb0882e-03d6-42a0-87f1-73d31019ce6c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316\",\r\n \"name\": \"ps2316\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9941.azuredatalakestore.net\",\r\n \"accountId\": \"3dc38087-3fa0-46e5-a60c-4212031eaa98\",\r\n \"creationTime\": \"2018-06-19T10:40:01.4209599Z\",\r\n \"lastModifiedTime\": \"2018-06-19T10:40:01.4209599Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"92b3ae67-e6f3-47fd-9ec5-231156d4633e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941\",\r\n \"name\": \"ps9941\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "952"
+ "992"
],
"Content-Type": [
"application/json"
@@ -307,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0881c644-f318-479d-9daa-037aa437f267"
+ "b6013cb8-b4c0-4096-8260-487b3dc4fe8c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14998"
],
"x-ms-correlation-request-id": [
- "3bc0bd23-5c3a-4b81-aa95-ec8b8200a753"
+ "53332c4a-497a-438a-b8d1-e67f283b578d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001331Z:3bc0bd23-5c3a-4b81-aa95-ec8b8200a753"
+ "AUSTRALIAEAST:20180619T104815Z:53332c4a-497a-438a-b8d1-e67f283b578d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:30 GMT"
+ "Tue, 19 Jun 2018 10:48:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -346,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMzE2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "27e2730f-e5b1-4cef-8386-39c90f073db7"
+ "753bd90b-942d-4cfb-aa85-6964959d4044"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"62160f91-75f0-49f6-8d72-4d53ac44d1df\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316\",\r\n \"name\": \"ps2316\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3dc38087-3fa0-46e5-a60c-4212031eaa98\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941\",\r\n \"name\": \"ps9941\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -388,10 +403,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/62160f91-75f0-49f6-8d72-4d53ac44d1df0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/3dc38087-3fa0-46e5-a60c-4212031eaa980?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "b51a48b4-f7f3-491d-a507-a0ce6eb29805"
+ "27f04463-1505-4ab8-a7b0-6bd85a59987f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -400,25 +415,22 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a0a55a06-afa0-4104-b2b1-b0b6b8b0a1c1"
+ "844df301-30f9-4ad7-8cc3-4acd8866b3e6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000632Z:a0a55a06-afa0-4104-b2b1-b0b6b8b0a1c1"
+ "AUSTRALIAEAST:20180619T104001Z:844df301-30f9-4ad7-8cc3-4acd8866b3e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:06:31 GMT"
+ "Tue, 19 Jun 2018 10:40:00 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -433,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/62160f91-75f0-49f6-8d72-4d53ac44d1df0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzYyMTYwZjkxLTc1ZjAtNDlmNi04ZDcyLTRkNTNhYzQ0ZDFkZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/3dc38087-3fa0-46e5-a60c-4212031eaa980?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzNkYzM4MDg3LTNmYTAtNDZlNS1hNjBjLTQyMTIwMzFlYWE5ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -460,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7bb64c2b-97ca-4bc0-8654-b87d8a11383b"
+ "7395351e-58a3-401a-8066-b10d5138416d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14995"
],
"x-ms-correlation-request-id": [
- "250e29a0-8960-459d-8900-2210efddbe98"
+ "97f7fda3-cc02-49b0-a19c-eb50a86d514c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000643Z:250e29a0-8960-459d-8900-2210efddbe98"
+ "AUSTRALIAEAST:20180619T104012Z:97f7fda3-cc02-49b0-a19c-eb50a86d514c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:06:42 GMT"
+ "Tue, 19 Jun 2018 10:40:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -499,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/62160f91-75f0-49f6-8d72-4d53ac44d1df0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzYyMTYwZjkxLTc1ZjAtNDlmNi04ZDcyLTRkNTNhYzQ0ZDFkZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/3dc38087-3fa0-46e5-a60c-4212031eaa980?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzNkYzM4MDg3LTNmYTAtNDZlNS1hNjBjLTQyMTIwMzFlYWE5ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -526,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "30ad9404-1afd-4778-83f3-13f734cde7cf"
+ "91000723-c3ac-48f2-bc38-91ecd5c757dd"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14994"
],
"x-ms-correlation-request-id": [
- "bca5f6c3-97b5-4413-8389-7a4b7f867677"
+ "4500521f-5b80-4520-a1b1-5faa9359b270"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000653Z:bca5f6c3-97b5-4413-8389-7a4b7f867677"
+ "AUSTRALIAEAST:20180619T104023Z:4500521f-5b80-4520-a1b1-5faa9359b270"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:06:53 GMT"
+ "Tue, 19 Jun 2018 10:40:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -565,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/62160f91-75f0-49f6-8d72-4d53ac44d1df0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzYyMTYwZjkxLTc1ZjAtNDlmNi04ZDcyLTRkNTNhYzQ0ZDFkZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/3dc38087-3fa0-46e5-a60c-4212031eaa980?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzNkYzM4MDg3LTNmYTAtNDZlNS1hNjBjLTQyMTIwMzFlYWE5ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -592,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "35d6e079-f77f-470c-a7c8-7a9dfd95fa42"
+ "571a9597-5f8f-48a6-bf79-59f553c764c2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14993"
],
"x-ms-correlation-request-id": [
- "cfcc89dd-c459-432f-bded-360fd2d6040c"
+ "1e59d6aa-fb75-4749-a11a-6c3635ccb89f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000704Z:cfcc89dd-c459-432f-bded-360fd2d6040c"
+ "AUSTRALIAEAST:20180619T104035Z:1e59d6aa-fb75-4749-a11a-6c3635ccb89f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:03 GMT"
+ "Tue, 19 Jun 2018 10:40:34 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -631,25 +634,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02ee2151-cbbe-401d-838a-0694412b2db6"
+ "817cc793-aa7f-4191-91fd-dcc72e26fd7b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1446' under resource group 'ps3232' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4954' under resource group 'ps4621' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -667,46 +670,49 @@
"gateway"
],
"x-ms-request-id": [
- "e9b2a67f-919e-4aa3-a5d0-2286e2de8ab4"
+ "6e6639b2-6849-4d6e-91da-a481731d7af6"
],
"x-ms-correlation-request-id": [
- "e9b2a67f-919e-4aa3-a5d0-2286e2de8ab4"
+ "6e6639b2-6849-4d6e-91da-a481731d7af6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000705Z:e9b2a67f-919e-4aa3-a5d0-2286e2de8ab4"
+ "AUSTRALIAEAST:20180619T104038Z:6e6639b2-6849-4d6e-91da-a481731d7af6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:05 GMT"
+ "Tue, 19 Jun 2018 10:40:37 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9be1010-662e-4606-b7e2-ab2b14dfbfb6"
+ "3254d1e2-4d0d-43f3-b287-958fb3e2d920"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1446' under resource group 'ps3232' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4954' under resource group 'ps4621' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -724,43 +730,46 @@
"gateway"
],
"x-ms-request-id": [
- "fdbc9357-3376-4555-895e-d41d6253fff2"
+ "7eeaa53e-8c0f-41c4-b77d-d8a646c497bf"
],
"x-ms-correlation-request-id": [
- "fdbc9357-3376-4555-895e-d41d6253fff2"
+ "7eeaa53e-8c0f-41c4-b77d-d8a646c497bf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000705Z:fdbc9357-3376-4555-895e-d41d6253fff2"
+ "AUSTRALIAEAST:20180619T104038Z:7eeaa53e-8c0f-41c4-b77d-d8a646c497bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:05 GMT"
+ "Tue, 19 Jun 2018 10:40:38 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2316\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2316\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1446.azuredatalakeanalytics.net\",\r\n \"accountId\": \"81460bb9-d501-4562-9228-9af44fc0d9a1\",\r\n \"creationTime\": \"2018-02-09T00:07:10.1270719Z\",\r\n \"lastModifiedTime\": \"2018-02-09T00:07:10.1270719Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446\",\r\n \"name\": \"ps1446\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9941\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9941\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4954.azuredatalakeanalytics.net\",\r\n \"accountId\": \"bafad788-3030-4b29-9e51-2a6754992bc4\",\r\n \"creationTime\": \"2018-06-19T10:40:45.8617733Z\",\r\n \"lastModifiedTime\": \"2018-06-19T10:40:45.8617733Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954\",\r\n \"name\": \"ps4954\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -772,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2e1e7254-7025-4638-82e6-89be9136094a"
+ "88cdbb4b-bc21-43bf-92c7-13007b02e412"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14994"
],
"x-ms-correlation-request-id": [
- "4f59d00b-e55e-4ebf-ae2e-fd2a9d007214"
+ "67b229a7-750e-45ba-a41b-9deb79229c3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000739Z:4f59d00b-e55e-4ebf-ae2e-fd2a9d007214"
+ "AUSTRALIAEAST:20180619T104119Z:67b229a7-750e-45ba-a41b-9deb79229c3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:39 GMT"
+ "Tue, 19 Jun 2018 10:41:18 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -811,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02083f81-c619-4182-b4b1-af9f11b80b10"
+ "0850b0ed-2f30-41da-abda-6e3e29079bc0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2316\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2316\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1446.azuredatalakeanalytics.net\",\r\n \"accountId\": \"81460bb9-d501-4562-9228-9af44fc0d9a1\",\r\n \"creationTime\": \"2018-02-09T00:07:10.1270719Z\",\r\n \"lastModifiedTime\": \"2018-02-09T00:07:10.1270719Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446\",\r\n \"name\": \"ps1446\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9941\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9941\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4954.azuredatalakeanalytics.net\",\r\n \"accountId\": \"bafad788-3030-4b29-9e51-2a6754992bc4\",\r\n \"creationTime\": \"2018-06-19T10:40:45.8617733Z\",\r\n \"lastModifiedTime\": \"2018-06-19T10:40:45.8617733Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954\",\r\n \"name\": \"ps4954\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -844,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7d5a589f-872d-4f4d-a0b1-db1504fc2b84"
+ "1923e7b4-0da4-4be7-ba88-6b2c145e6368"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14993"
],
"x-ms-correlation-request-id": [
- "e709c47f-fd66-4c53-bc33-ca4976dba198"
+ "fc5d7b99-2488-4533-a6e8-8b98357ff63a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000740Z:e709c47f-fd66-4c53-bc33-ca4976dba198"
+ "AUSTRALIAEAST:20180619T104120Z:fc5d7b99-2488-4533-a6e8-8b98357ff63a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:39 GMT"
+ "Tue, 19 Jun 2018 10:41:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -883,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd927aa2-38f0-4fd8-895f-d9b2557870f4"
+ "348dc0b8-9cc4-4698-8368-6e4aca65338e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2316\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2316\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1446.azuredatalakeanalytics.net\",\r\n \"accountId\": \"81460bb9-d501-4562-9228-9af44fc0d9a1\",\r\n \"creationTime\": \"2018-02-09T00:07:10.1270719Z\",\r\n \"lastModifiedTime\": \"2018-02-09T00:07:10.1270719Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446\",\r\n \"name\": \"ps1446\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9941\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9941\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4954.azuredatalakeanalytics.net\",\r\n \"accountId\": \"bafad788-3030-4b29-9e51-2a6754992bc4\",\r\n \"creationTime\": \"2018-06-19T10:40:45.8617733Z\",\r\n \"lastModifiedTime\": \"2018-06-19T10:40:45.8617733Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954\",\r\n \"name\": \"ps4954\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -916,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "3b6035a4-c9a8-4707-87cc-77bd6fe1e0dd"
+ "84e8e145-bdbd-4f42-9070-50d2de0cef36"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14999"
],
"x-ms-correlation-request-id": [
- "bd9a25b8-8db1-491b-a905-9df7c6894c8c"
+ "8a86250b-ebdd-48d6-8854-327b52125d68"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001326Z:bd9a25b8-8db1-491b-a905-9df7c6894c8c"
+ "AUSTRALIAEAST:20180619T104752Z:8a86250b-ebdd-48d6-8854-327b52125d68"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:26 GMT"
+ "Tue, 19 Jun 2018 10:47:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -955,31 +955,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82f3c380-2be3-4c96-9e78-feff029ad5ff"
+ "78162f83-959e-42b4-9620-4bd315411d9e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1446' under resource group 'ps3232' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "74"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -987,17 +987,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "8b367ee5-efc0-498b-b3ca-dbe398de7ba9"
+ "667e6fdb-54b9-4507-a370-882a7ddc8728"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "8b367ee5-efc0-498b-b3ca-dbe398de7ba9"
+ "adc10751-cd04-49e9-bf87-1533da1e5279"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001330Z:8b367ee5-efc0-498b-b3ca-dbe398de7ba9"
+ "AUSTRALIAEAST:20180619T104811Z:adc10751-cd04-49e9-bf87-1533da1e5279"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1006,37 +1009,46 @@
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:29 GMT"
+ "Tue, 19 Jun 2018 10:48:10 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba8e05aa-c021-4195-bbf5-2a7001fa4869"
+ "2e288cbf-4039-4d7a-b283-b7ba050ca1cc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1446' under resource group 'ps3232' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "74"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1044,17 +1056,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "befee1f8-5f42-43bd-b03c-34c712456cf7"
+ "323f5a9f-bd96-4e02-b96d-695b53d7f623"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "befee1f8-5f42-43bd-b03c-34c712456cf7"
+ "5ff20882-841e-45f1-b84d-ee13094f626c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001330Z:befee1f8-5f42-43bd-b03c-34c712456cf7"
+ "AUSTRALIAEAST:20180619T104812Z:5ff20882-841e-45f1-b84d-ee13094f626c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1063,40 +1078,49 @@
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:29 GMT"
+ "Tue, 19 Jun 2018 10:48:12 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps2316\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps2316\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9941\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps9941\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "38bbd9ca-a8e8-4bf4-a2c2-a63ed5b510cc"
+ "03d73f23-1d4d-49ce-8f06-e269d3e26738"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps2316\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2316\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"81460bb9-d501-4562-9228-9af44fc0d9a1\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446\",\r\n \"name\": \"ps1446\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9941\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9941\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"bafad788-3030-4b29-9e51-2a6754992bc4\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954\",\r\n \"name\": \"ps4954\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "487"
],
"Content-Type": [
"application/json"
@@ -1111,37 +1135,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/81460bb9-d501-4562-9228-9af44fc0d9a10?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/bafad788-3030-4b29-9e51-2a6754992bc40?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "f6793b1d-3161-48b9-bcbe-3da418fab4e1"
+ "1321c060-1cab-4140-88ee-cd91ddc6fe0a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1199"
],
"x-ms-correlation-request-id": [
- "efa4b536-39be-415e-a1d4-b6913feae0ac"
+ "f4ea44d1-8c3c-4d88-a397-2d7241a7d83f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000707Z:efa4b536-39be-415e-a1d4-b6913feae0ac"
+ "AUSTRALIAEAST:20180619T104043Z:f4ea44d1-8c3c-4d88-a397-2d7241a7d83f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:07 GMT"
+ "Tue, 19 Jun 2018 10:40:43 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1156,16 +1177,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/81460bb9-d501-4562-9228-9af44fc0d9a10?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84MTQ2MGJiOS1kNTAxLTQ1NjItOTIyOC05YWY0NGZjMGQ5YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/bafad788-3030-4b29-9e51-2a6754992bc40?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9iYWZhZDc4OC0zMDMwLTRiMjktOWU1MS0yYTY3NTQ5OTJiYzQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1183,31 +1204,28 @@
"no-cache"
],
"x-ms-request-id": [
- "93ab3504-4560-4fb3-b1c5-9885eae753cd"
+ "f42e169a-a923-4b54-ae3e-f89f4de1deca"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14997"
],
"x-ms-correlation-request-id": [
- "7707c728-ceb0-4f7c-b2a9-b196dee21fc6"
+ "282934e3-5b3d-46c9-b2fe-6f9886393f97"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000718Z:7707c728-ceb0-4f7c-b2a9-b196dee21fc6"
+ "AUSTRALIAEAST:20180619T104055Z:282934e3-5b3d-46c9-b2fe-6f9886393f97"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:18 GMT"
+ "Tue, 19 Jun 2018 10:40:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1222,16 +1240,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/81460bb9-d501-4562-9228-9af44fc0d9a10?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84MTQ2MGJiOS1kNTAxLTQ1NjItOTIyOC05YWY0NGZjMGQ5YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/bafad788-3030-4b29-9e51-2a6754992bc40?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9iYWZhZDc4OC0zMDMwLTRiMjktOWU1MS0yYTY3NTQ5OTJiYzQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1249,31 +1267,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f885cd2a-2578-447b-aeb6-0d2e9834e50a"
+ "e6cf8ff4-5500-4b3a-a1b8-c3d53cc3626e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14276"
+ "14996"
],
"x-ms-correlation-request-id": [
- "7c1a80ef-a2b8-434c-9817-b8c4f200b921"
+ "368dd8bd-e14a-46a7-90d3-227fa1ab243d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000729Z:7c1a80ef-a2b8-434c-9817-b8c4f200b921"
+ "AUSTRALIAEAST:20180619T104106Z:368dd8bd-e14a-46a7-90d3-227fa1ab243d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:28 GMT"
+ "Tue, 19 Jun 2018 10:41:06 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1288,16 +1303,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/81460bb9-d501-4562-9228-9af44fc0d9a10?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84MTQ2MGJiOS1kNTAxLTQ1NjItOTIyOC05YWY0NGZjMGQ5YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/bafad788-3030-4b29-9e51-2a6754992bc40?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9iYWZhZDc4OC0zMDMwLTRiMjktOWU1MS0yYTY3NTQ5OTJiYzQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1315,31 +1330,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8bd243b1-56b8-4c51-ae69-bf53c1b6c09e"
+ "fdb282e4-0a9d-403c-b009-4f00ea647bb9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14995"
],
"x-ms-correlation-request-id": [
- "740956e3-7239-4cfb-9179-f3ae4cf690f7"
+ "14d95791-9fec-4fc6-b2f4-8e4baa2777d5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T000739Z:740956e3-7239-4cfb-9179-f3ae4cf690f7"
+ "AUSTRALIAEAST:20180619T104118Z:14d95791-9fec-4fc6-b2f4-8e4baa2777d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:07:39 GMT"
+ "Tue, 19 Jun 2018 10:41:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1354,31 +1366,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\r\\n\\tCREATE TABLE ps9844.dbo.ps3056\\r\\n\\t(\\r\\n\\t\\t\\t//Define schema of table\\r\\n\\t\\t\\tUserId int, \\r\\n\\t\\t\\tStart DateTime, \\r\\n\\t\\t\\tRegion string, \\r\\n\\t\\t\\tQuery string, \\r\\n\\t\\t\\tDuration int, \\r\\n\\t\\t\\tUrls string, \\r\\n\\t\\t\\tClickedUrls string,\\r\\n\\t\\tINDEX idx1 //Name of index\\r\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\r\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n\\t);\\r\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\r\\n\\r\\n\\t//create table weblogs on space-delimited website log data\\r\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\r\\n\\tRETURNS @result TABLE\\r\\n\\t(\\r\\n\\t\\ts_date DateTime,\\r\\n\\t\\ts_time string,\\r\\n\\t\\ts_sitename string,\\r\\n\\t\\tcs_method string, \\r\\n\\t\\tcs_uristem string,\\r\\n\\t\\tcs_uriquery string,\\r\\n\\t\\ts_port int,\\r\\n\\t\\tcs_username string, \\r\\n\\t\\tc_ip string,\\r\\n\\t\\tcs_useragent string,\\r\\n\\t\\tcs_cookie string,\\r\\n\\t\\tcs_referer string, \\r\\n\\t\\tcs_host string,\\r\\n\\t\\tsc_status int,\\r\\n\\t\\tsc_substatus int,\\r\\n\\t\\tsc_win32status int, \\r\\n\\t\\tsc_bytes int,\\r\\n\\t\\tcs_bytes int,\\r\\n\\t\\ts_timetaken int\\r\\n\\t)\\r\\n\\tAS\\r\\n\\tBEGIN\\r\\n\\r\\n\\t\\t@result = EXTRACT\\r\\n\\t\\t\\ts_date DateTime,\\r\\n\\t\\t\\ts_time string,\\r\\n\\t\\t\\ts_sitename string,\\r\\n\\t\\t\\tcs_method string,\\r\\n\\t\\t\\tcs_uristem string,\\r\\n\\t\\t\\tcs_uriquery string,\\r\\n\\t\\t\\ts_port int,\\r\\n\\t\\t\\tcs_username string,\\r\\n\\t\\t\\tc_ip string,\\r\\n\\t\\t\\tcs_useragent string,\\r\\n\\t\\t\\tcs_cookie string,\\r\\n\\t\\t\\tcs_referer string,\\r\\n\\t\\t\\tcs_host string,\\r\\n\\t\\t\\tsc_status int,\\r\\n\\t\\t\\tsc_substatus int,\\r\\n\\t\\t\\tsc_win32status int,\\r\\n\\t\\t\\tsc_bytes int,\\r\\n\\t\\t\\tcs_bytes int,\\r\\n\\t\\t\\ts_timetaken int\\r\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\r\\n\\r\\n\\tRETURN;\\r\\n\\tEND;\\r\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\r\\n\\tAS \\r\\n\\t\\tSELECT * FROM \\r\\n\\t\\t(\\r\\n\\t\\t\\tVALUES(1,2),(2,4)\\r\\n\\t\\t) \\r\\n\\tAS \\r\\n\\tT(a, b);\\r\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\r\\n\\tAS BEGIN\\r\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\r\\n\\t AS \\r\\n\\t\\tSELECT * FROM \\r\\n\\t\\t(\\r\\n\\t\\t\\tVALUES(1,2),(2,4)\\r\\n\\t\\t) \\r\\n\\t AS \\r\\n\\t T(a, b);\\r\\n\\tEND;\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\r\\n\\tCREATE TABLE ps3498.dbo.ps3908\\r\\n\\t(\\r\\n\\t\\t\\t//Define schema of table\\r\\n\\t\\t\\tUserId int, \\r\\n\\t\\t\\tStart DateTime, \\r\\n\\t\\t\\tRegion string, \\r\\n\\t\\t\\tQuery string, \\r\\n\\t\\t\\tDuration int, \\r\\n\\t\\t\\tUrls string, \\r\\n\\t\\t\\tClickedUrls string,\\r\\n\\t\\tINDEX idx1 //Name of index\\r\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\r\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n\\t);\\r\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\r\\n\\r\\n\\t//create table weblogs on space-delimited website log data\\r\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\r\\n\\tRETURNS @result TABLE\\r\\n\\t(\\r\\n\\t\\ts_date DateTime,\\r\\n\\t\\ts_time string,\\r\\n\\t\\ts_sitename string,\\r\\n\\t\\tcs_method string, \\r\\n\\t\\tcs_uristem string,\\r\\n\\t\\tcs_uriquery string,\\r\\n\\t\\ts_port int,\\r\\n\\t\\tcs_username string, \\r\\n\\t\\tc_ip string,\\r\\n\\t\\tcs_useragent string,\\r\\n\\t\\tcs_cookie string,\\r\\n\\t\\tcs_referer string, \\r\\n\\t\\tcs_host string,\\r\\n\\t\\tsc_status int,\\r\\n\\t\\tsc_substatus int,\\r\\n\\t\\tsc_win32status int, \\r\\n\\t\\tsc_bytes int,\\r\\n\\t\\tcs_bytes int,\\r\\n\\t\\ts_timetaken int\\r\\n\\t)\\r\\n\\tAS\\r\\n\\tBEGIN\\r\\n\\r\\n\\t\\t@result = EXTRACT\\r\\n\\t\\t\\ts_date DateTime,\\r\\n\\t\\t\\ts_time string,\\r\\n\\t\\t\\ts_sitename string,\\r\\n\\t\\t\\tcs_method string,\\r\\n\\t\\t\\tcs_uristem string,\\r\\n\\t\\t\\tcs_uriquery string,\\r\\n\\t\\t\\ts_port int,\\r\\n\\t\\t\\tcs_username string,\\r\\n\\t\\t\\tc_ip string,\\r\\n\\t\\t\\tcs_useragent string,\\r\\n\\t\\t\\tcs_cookie string,\\r\\n\\t\\t\\tcs_referer string,\\r\\n\\t\\t\\tcs_host string,\\r\\n\\t\\t\\tsc_status int,\\r\\n\\t\\t\\tsc_substatus int,\\r\\n\\t\\t\\tsc_win32status int,\\r\\n\\t\\t\\tsc_bytes int,\\r\\n\\t\\t\\tcs_bytes int,\\r\\n\\t\\t\\ts_timetaken int\\r\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\r\\n\\r\\n\\tRETURN;\\r\\n\\tEND;\\r\\n\\tCREATE VIEW ps3498.dbo.ps577 \\r\\n\\tAS \\r\\n\\t\\tSELECT * FROM \\r\\n\\t\\t(\\r\\n\\t\\t\\tVALUES(1,2),(2,4)\\r\\n\\t\\t) \\r\\n\\tAS \\r\\n\\tT(a, b);\\r\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\r\\n\\tAS BEGIN\\r\\n\\t CREATE VIEW ps3498.dbo.ps577 \\r\\n\\t AS \\r\\n\\t\\tSELECT * FROM \\r\\n\\t\\t(\\r\\n\\t\\t\\tVALUES(1,2),(2,4)\\r\\n\\t\\t) \\r\\n\\t AS \\r\\n\\t T(a, b);\\r\\n\\tEND;\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2420"
+ "2418"
],
"x-ms-client-request-id": [
- "93996168-4dd7-4a3d-8060-703350904d7f"
+ "35864968-c159-4e17-a321-58260c07a0c9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1390,7 +1402,7 @@
"chunked"
],
"x-ms-request-id": [
- "2452d2af-d978-4335-a1da-e95f6ea0d376"
+ "39063703-eaac-4936-9092-511ea2857306"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1402,31 +1414,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:41 GMT"
+ "Tue, 19 Jun 2018 10:46:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "032d4c01-5ad2-456a-a786-3b43464c4f68"
+ "62107c3e-f2b4-49c3-89c1-2903f9868cf0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.5848968S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1438,7 +1450,7 @@
"chunked"
],
"x-ms-request-id": [
- "fc3dfb84-d8e6-4755-a67e-fe29fbbf2098"
+ "262c21c4-698f-419c-b9a5-b5f4f62ef7c8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1450,31 +1462,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:42 GMT"
+ "Tue, 19 Jun 2018 10:46:24 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87f8c133-706f-4646-9711-a32e43abe8f9"
+ "784cc869-170c-405d-a144-0670294a6341"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.9813373S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.2881182S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1486,7 +1498,7 @@
"chunked"
],
"x-ms-request-id": [
- "87ee0e93-be0d-4c5a-afdf-7acc781e62ae"
+ "e98ae983-00c9-438b-94ff-17fc6b20e529"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1498,31 +1510,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:42 GMT"
+ "Tue, 19 Jun 2018 10:46:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e455e80-ade9-476e-bc0c-0ca3bb4090e9"
+ "6932b747-924f-47a3-9e41-118cc6b11094"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.3591912S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6006915S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1534,7 +1546,7 @@
"chunked"
],
"x-ms-request-id": [
- "545e6944-2f7c-4108-9d18-878ace9ae928"
+ "d31b5b1d-6a79-49de-bb7b-970fe87955fe"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1546,31 +1558,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:43 GMT"
+ "Tue, 19 Jun 2018 10:46:34 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b115512-d29a-42fb-b01b-dd475601b03c"
+ "7bea9042-4b41-4a71-9a91-0eeb6a9e3415"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.7002304S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT16.9133003S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1582,7 +1594,7 @@
"chunked"
],
"x-ms-request-id": [
- "106286ae-8e22-4958-8863-143d7e7a33f3"
+ "024d2fac-b196-4ac1-85ba-0219c6a8feb5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1594,31 +1606,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:43 GMT"
+ "Tue, 19 Jun 2018 10:46:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d22119cd-f71b-4c05-8417-257dde34b838"
+ "b448afa9-3bc7-495a-aa55-0964681ee257"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.02824S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3437374+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3750223+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:41873c66-2c9d-4532-baeb-54047554d032\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.390633+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"41873c66-2c9d-4532-baeb-54047554d032\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"yarnApplicationId\": 5243560,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.8283209S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0312849S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1630,7 +1642,7 @@
"chunked"
],
"x-ms-request-id": [
- "4eccb9be-9c3f-4761-a08a-dd37c19e6a99"
+ "b5facd76-97d5-468c-a7ec-2ebd3639c089"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1642,31 +1654,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:43 GMT"
+ "Tue, 19 Jun 2018 10:46:45 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "46163e32-d552-4b93-9b1c-2e3a05266732"
+ "b5311fa0-c64d-4901-9c9b-e15b03a32a39"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.2157239S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"startTime\": \"2018-06-19T18:46:51.3595161+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3437374+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3750223+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:41873c66-2c9d-4532-baeb-54047554d032\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.390633+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T18:46:51.3595161+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"41873c66-2c9d-4532-baeb-54047554d032\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"yarnApplicationId\": 5243560,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.8283209S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0312849S\",\r\n \"totalRunningTime\": \"PT0.1318747S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1678,7 +1690,7 @@
"chunked"
],
"x-ms-request-id": [
- "e5a62065-f1b1-4bc4-8024-291b7b73436f"
+ "c3b18f16-1e55-47ef-af2e-00a90df3e0d9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1690,31 +1702,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:43 GMT"
+ "Tue, 19 Jun 2018 10:46:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ad4b9ee-21d2-4bb6-a5e5-56a96da98e4e"
+ "3d005aa9-62c9-4722-9717-4461bf1095ba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.4529527S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"startTime\": \"2018-06-19T18:46:51.3595161+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3437374+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3750223+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:41873c66-2c9d-4532-baeb-54047554d032\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.390633+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T18:46:51.3595161+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"41873c66-2c9d-4532-baeb-54047554d032\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"yarnApplicationId\": 5243560,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.8283209S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0312849S\",\r\n \"totalRunningTime\": \"PT5.6574631S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1726,7 +1738,7 @@
"chunked"
],
"x-ms-request-id": [
- "bab43222-26b2-464a-8859-451a01d6a3ee"
+ "53b30c5d-3c30-45ad-a5f2-c425a004d1b1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1738,31 +1750,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:44 GMT"
+ "Tue, 19 Jun 2018 10:46:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8608ef32-6533-46e1-a140-80d9013685e0"
+ "b1c4f478-81c7-4eca-93e1-45d76b9ca34f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.6248549S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"startTime\": \"2018-06-19T18:46:51.3595161+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3437374+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3750223+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:41873c66-2c9d-4532-baeb-54047554d032\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.390633+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T18:46:51.3595161+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"41873c66-2c9d-4532-baeb-54047554d032\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"yarnApplicationId\": 5243560,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.8283209S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0312849S\",\r\n \"totalRunningTime\": \"PT11.5385113S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1774,7 +1786,7 @@
"chunked"
],
"x-ms-request-id": [
- "d5a792ab-6aa9-4893-b057-9e6ff5553ec5"
+ "2580c586-4689-46b0-85ee-3e24974d12e4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1786,31 +1798,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:44 GMT"
+ "Tue, 19 Jun 2018 10:47:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/b74c7ea6-7005-4985-8488-3ef0d174559e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvYjc0YzdlYTYtNzAwNS00OTg1LTg0ODgtM2VmMGQxNzQ1NTllP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6daab565-07c3-43a9-8f87-271d18be8362"
+ "d2af7848-f113-42ff-aa68-aa2b7c65f077"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.0166812S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"b74c7ea6-7005-4985-8488-3ef0d174559e\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"startTime\": \"2018-06-19T18:46:51.3595161+08:00\",\r\n \"endTime\": \"2018-06-19T18:47:05.7971793+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T18:46:22.7966336+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T18:46:23.5154165+08:00\",\r\n \"details\": \"Compilation:f755fe38-8951-42a2-80ef-e6295a8681dd;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3437374+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.3750223+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:41873c66-2c9d-4532-baeb-54047554d032\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T18:46:41.390633+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T18:46:51.3595161+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-06-19T18:47:05.7971793+08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"41873c66-2c9d-4532-baeb-54047554d032\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps3498; CREATE DATABASE ps3498;\\n\\tCREATE TABLE ps3498.dbo.ps3908\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps3498.dbo.ps3908 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps3498.dbo.ps1540;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps9941.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/10/46/b74c7ea6-7005-4985-8488-3ef0d174559e/algebra.xml\",\r\n \"yarnApplicationId\": 5243560,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.8283209S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0312849S\",\r\n \"totalRunningTime\": \"PT14.4376632S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1822,7 +1834,7 @@
"chunked"
],
"x-ms-request-id": [
- "6575e750-031e-48f5-8f7e-1b50a260afd9"
+ "a8abd069-2899-4116-867c-c4176ad8a294"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1834,34 +1846,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:44 GMT"
+ "Tue, 19 Jun 2018 10:47:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d25e363-79a9-4b6e-961c-b754948922a9"
+ "55f59550-d378-4223-bb04-03a5636eeeec"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.4032501S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"3d648099-10bb-4430-a1a9-ee6be0658649\"\r\n },\r\n {\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"version\": \"14ec9ee2-3660-44e3-8b0b-0680fefdf0d0\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -1870,7 +1882,10 @@
"chunked"
],
"x-ms-request-id": [
- "047c77f1-7bf2-4a79-b889-d763c1db8ca0"
+ "97476bf6-0c28-4bff-8359-bf9ec48196d2"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1882,34 +1897,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:45 GMT"
+ "Tue, 19 Jun 2018 10:47:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "137c4e21-1cfc-4b3e-84f3-16d4898a394f"
+ "dcf2695c-483a-4f4d-86a0-4a3764fee05e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.6376081S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"version\": \"14ec9ee2-3660-44e3-8b0b-0680fefdf0d0\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -1918,7 +1933,10 @@
"chunked"
],
"x-ms-request-id": [
- "7b0b778b-02b0-4058-96b4-8e629847dd21"
+ "2b2f3e96-4924-4631-80dd-237befd8df21"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1930,34 +1948,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:45 GMT"
+ "Tue, 19 Jun 2018 10:47:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/tables?basic=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3RhYmxlcz9iYXNpYz1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ceb70b15-49ca-44ec-881b-df118afcbccc"
+ "d44898b7-0fdb-484d-9445-7dd5f59ec8d4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.8407548S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"ps3908\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"bf17a384-da59-4784-8722-e4b7e8cdc67b\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.333+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.333+08:00\",\r\n \"version\": \"6a27a1f7-4fb2-4317-b139-74202e324513\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -1966,7 +1984,10 @@
"chunked"
],
"x-ms-request-id": [
- "c9a67e6e-7e84-4eb0-9125-ef332cd0a106"
+ "272121f2-53ac-4710-a07c-75a5ec18fcef"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1978,34 +1999,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:45 GMT"
+ "Tue, 19 Jun 2018 10:47:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/tables?basic=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3RhYmxlcz9iYXNpYz1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a521e35a-c4b3-4c29-8f4e-b86656030f33"
+ "9007488c-99bf-4800-9017-0f2872c4af67"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.1221396S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"ps3908\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"bf17a384-da59-4784-8722-e4b7e8cdc67b\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.333+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.333+08:00\",\r\n \"version\": \"6a27a1f7-4fb2-4317-b139-74202e324513\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2014,7 +2035,10 @@
"chunked"
],
"x-ms-request-id": [
- "4c926d39-7deb-4a88-b90d-b29377fdf7a4"
+ "052cec74-6950-4966-b47a-7a06c8bb3352"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2026,34 +2050,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:45 GMT"
+ "Tue, 19 Jun 2018 10:47:10 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/tables/ps3908?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3RhYmxlcy9wczM5MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f9284a9-fd90-4d07-8484-4490b8e9d68e"
+ "225f874d-b68a-4c25-ba24-08082128995a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.3563632S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"tableName\": \"ps3908\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"bf17a384-da59-4784-8722-e4b7e8cdc67b\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.333+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.333+08:00\",\r\n \"version\": \"6a27a1f7-4fb2-4317-b139-74202e324513\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2062,7 +2086,10 @@
"chunked"
],
"x-ms-request-id": [
- "69604183-a53e-4893-bf4e-c158b35c4fd1"
+ "be76e75d-68c6-477e-8efd-7d7b4a98281f"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2074,34 +2101,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:46 GMT"
+ "Tue, 19 Jun 2018 10:47:10 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/tables/ps3908/partitions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3RhYmxlcy9wczM5MDgvcGFydGl0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8817205-6dae-4086-b713-441a0734a978"
+ "308f8bf3-56a3-449f-a037-c4ea746fe843"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.6248657S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"ps3908_Partition_50058c23-64cb-4649-b82e-543377fa97b4\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createTime\": \"2018-06-20T01:47:01.347+08:00\",\r\n \"parentName\": {\r\n \"server\": \"bafad788-3030-4b29-9e51-2a6754992bc4\",\r\n \"firstPart\": \"ps3498\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"ps3908\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"cfb257ef-9b46-41aa-9439-33f1aee3949a\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2110,7 +2137,10 @@
"chunked"
],
"x-ms-request-id": [
- "b74325b2-d8a3-4d19-b7eb-42dcf7b0ce51"
+ "4eb20f6d-b690-45c0-974b-30aa8bcb6057"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2122,34 +2152,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:46 GMT"
+ "Tue, 19 Jun 2018 10:47:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/tables/ps3908/partitions/ps3908_Partition_50058c23-64cb-4649-b82e-543377fa97b4?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3RhYmxlcy9wczM5MDgvcGFydGl0aW9ucy9wczM5MDhfUGFydGl0aW9uXzUwMDU4YzIzLTY0Y2ItNDY0OS1iODJlLTU0MzM3N2ZhOTdiND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99cb64bf-ec5e-437d-b62f-8fa1d5dec6d2"
+ "d5a6d09c-c52f-4127-bf05-214b95a8e8f1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.8123685S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"ps3908_Partition_50058c23-64cb-4649-b82e-543377fa97b4\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createTime\": \"2018-06-20T01:47:01.347+08:00\",\r\n \"parentName\": {\r\n \"server\": \"bafad788-3030-4b29-9e51-2a6754992bc4\",\r\n \"firstPart\": \"ps3498\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"ps3908\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"cfb257ef-9b46-41aa-9439-33f1aee3949a\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2158,7 +2188,10 @@
"chunked"
],
"x-ms-request-id": [
- "282a7d75-2f50-4cc0-bde8-bb705c93ebf7"
+ "f585e7a6-cc43-4d6b-a44a-4cb8bddeca62"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2170,34 +2203,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:46 GMT"
+ "Tue, 19 Jun 2018 10:47:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3RhYmxldmFsdWVkZnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1466340d-49e9-4e50-b835-f107d755f420"
+ "2b08c625-9959-43e9-b3bd-d5d536114a72"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.9970116S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"tvfName\": \"ps1540\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.347+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.347+08:00\",\r\n \"version\": \"071ee84c-030f-4d09-9ea2-fc1b0ac52bed\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2206,7 +2239,10 @@
"chunked"
],
"x-ms-request-id": [
- "9d0fb27f-57ef-43ea-ab4a-b462ca1aa3d0"
+ "dd8fb989-3c7c-42f0-897f-2635fc4e936f"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2218,34 +2254,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:46 GMT"
+ "Tue, 19 Jun 2018 10:47:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/tablevaluedfunctions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3RhYmxldmFsdWVkZnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9640354-8eab-456f-91a2-8cfa45b861dd"
+ "554fb39a-35f9-4be9-aa54-785451c9e8b9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.2157453S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"tvfName\": \"ps1540\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.347+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.347+08:00\",\r\n \"version\": \"071ee84c-030f-4d09-9ea2-fc1b0ac52bed\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2254,7 +2290,10 @@
"chunked"
],
"x-ms-request-id": [
- "daf1406d-69e5-4093-ac29-5c879b78afe0"
+ "2a9e621f-0669-4ad1-a74b-cd72e1654bcd"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2266,34 +2305,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:46 GMT"
+ "Tue, 19 Jun 2018 10:47:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/tablevaluedfunctions/ps1540?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3RhYmxldmFsdWVkZnVuY3Rpb25zL3BzMTU0MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2aca59bd-3a7d-4d58-ab33-c55bf38c20c9"
+ "01dd2d43-2657-4d9d-808a-97a8f5ea1db9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.4061255S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"tvfName\": \"ps1540\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps3498.dbo.ps1540()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.347+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.347+08:00\",\r\n \"version\": \"071ee84c-030f-4d09-9ea2-fc1b0ac52bed\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2302,7 +2341,10 @@
"chunked"
],
"x-ms-request-id": [
- "953f0f7a-ec79-432a-a963-8af2667d62fb"
+ "0fede896-70fb-4cb6-a915-1e3a82ba060a"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2314,34 +2356,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:47 GMT"
+ "Tue, 19 Jun 2018 10:47:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/procedures?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3Byb2NlZHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "112ba79c-d66c-492f-94c8-3a7199d379cb"
+ "f7cbf071-5c35-4f02-a647-3c3b5488a8d4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5752886S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"procName\": \"ps7034\",\r\n \"definition\": \"CREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"edcbb937-0c8f-41dc-ac38-cc1aad31d0aa\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2350,7 +2392,10 @@
"chunked"
],
"x-ms-request-id": [
- "2a3eb604-12de-4e56-afe5-ec27401ac37e"
+ "562f34d7-2f77-405a-a7b5-58c5025b29c6"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2362,34 +2407,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:47 GMT"
+ "Tue, 19 Jun 2018 10:47:13 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/procedures/ps7034?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3Byb2NlZHVyZXMvcHM3MDM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32780c71-8ec0-414f-927a-9b68d4d46b77"
+ "92affe65-8792-4aed-910c-7a5a56d8a6fa"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.7626245S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"procName\": \"ps7034\",\r\n \"definition\": \"CREATE PROCEDURE ps3498.dbo.ps7034()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps3498.dbo.ps577 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"edcbb937-0c8f-41dc-ac38-cc1aad31d0aa\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2398,7 +2443,10 @@
"chunked"
],
"x-ms-request-id": [
- "828430ea-988b-4010-bcb5-434da1b85e89"
+ "6f2dade4-177d-4770-acec-9003656adb54"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2410,34 +2458,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:47 GMT"
+ "Tue, 19 Jun 2018 10:47:13 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/views?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3ZpZXdzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a99a89dd-7c68-4705-998e-4c13f3d0e732"
+ "c929e8d4-24d4-4f13-90cf-7eb63179d847"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.9529929S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"viewName\": \"ps577\",\r\n \"definition\": \"CREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.363+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.363+08:00\",\r\n \"version\": \"89f8f279-1cf7-4d98-8ad5-e7b619331850\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2446,7 +2494,10 @@
"chunked"
],
"x-ms-request-id": [
- "fb024de8-8622-426f-b9a7-3b2b158c7991"
+ "af5cf1fe-b123-4562-958d-975bcc6012c6"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2458,34 +2509,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:47 GMT"
+ "Tue, 19 Jun 2018 10:47:13 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/views?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3ZpZXdzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fab9e52-ed0f-4052-babe-669c2a2e2e3c"
+ "776a44bc-907c-43cb-aba4-ddc5f4a1731b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.1873979S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"viewName\": \"ps577\",\r\n \"definition\": \"CREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.363+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.363+08:00\",\r\n \"version\": \"89f8f279-1cf7-4d98-8ad5-e7b619331850\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2494,7 +2545,10 @@
"chunked"
],
"x-ms-request-id": [
- "39287b81-cfc3-4c50-840c-d00abec47ca1"
+ "5fcec11a-2da3-4d6c-b701-5a0422309b70"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2506,34 +2560,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:47 GMT"
+ "Tue, 19 Jun 2018 10:47:14 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/schemas/dbo/views/ps577?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NjaGVtYXMvZGJvL3ZpZXdzL3BzNTc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f08d3a0a-b6d0-4d78-b09b-2209ca2f7467"
+ "222df35e-0764-4afa-ad3f-3dde5c030611"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.3878052S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"viewName\": \"ps577\",\r\n \"definition\": \"CREATE VIEW ps3498.dbo.ps577 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps4954\",\r\n \"databaseName\": \"ps3498\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T01:47:01.363+08:00\",\r\n \"updateTime\": \"2018-06-20T01:47:01.363+08:00\",\r\n \"version\": \"89f8f279-1cf7-4d98-8ad5-e7b619331850\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2542,7 +2596,10 @@
"chunked"
],
"x-ms-request-id": [
- "c9f7d5a8-2ba5-4fe5-bb1a-3d8650f46de7"
+ "167e82d3-4769-4961-a040-99a3f969a9f8"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2554,35 +2611,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:48 GMT"
+ "Tue, 19 Jun 2018 10:47:14 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/secrets/ps6744?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NlY3JldHMvcHM2NzQ0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"ps5207\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "69"
+ ],
"x-ms-client-request-id": [
- "69c30d8e-9f92-4a1e-b94f-1c167076674a"
+ "ab2a32cb-8c55-4ecb-a243-8069a5c32077"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.5909131S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -2590,7 +2650,7 @@
"chunked"
],
"x-ms-request-id": [
- "52aa2d5f-1d51-46a7-8d3b-015e195e433d"
+ "d1ac6913-05c3-4410-92f0-441d43cfb6d3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2602,35 +2662,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:48 GMT"
+ "Tue, 19 Jun 2018 10:47:16 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/secrets/ps6744dup?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NlY3JldHMvcHM2NzQ0ZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"ps5207\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "69"
+ ],
"x-ms-client-request-id": [
- "460cbe89-6fe3-4d9a-8f88-a2bf3db4eb24"
+ "be6656fc-8840-46fd-86c6-62bc4f06c0d4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.778418S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -2638,7 +2701,7 @@
"chunked"
],
"x-ms-request-id": [
- "82721f2d-5635-4380-a6db-c6a7a6f8c07c"
+ "e229a0c6-18a2-463d-9c54-b564ab490b08"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2650,31 +2713,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:48 GMT"
+ "Tue, 19 Jun 2018 10:47:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/secrets/ps6744?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NlY3JldHMvcHM2NzQ0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aef380da-b9f6-4878-a06c-2c0e21a9ca37"
+ "33f9f10e-b33f-41d9-9f4f-82aa2bb89c01"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.984282S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"creationTime\": \"2018-06-19T10:47:16.4046255Z\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2686,7 +2749,7 @@
"chunked"
],
"x-ms-request-id": [
- "ca42c1ce-0b36-419f-bcf4-7679b555acb5"
+ "9819aaa1-0e21-49f1-adb9-26b4ca56923a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2698,31 +2761,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:48 GMT"
+ "Tue, 19 Jun 2018 10:47:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/secrets/ps6744?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NlY3JldHMvcHM2NzQ0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab2064aa-3045-4532-a843-9ab49d9cf08a"
+ "7e75d23e-6745-4d38-a33b-6843b9300834"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.1846966S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps6744' does not exist. Trace: 1d017ab7-511c-4df0-a5ae-7aa495e7b768 Time: 2018-06-19T03:47:26.1692410-07:00\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2734,7 +2797,7 @@
"chunked"
],
"x-ms-request-id": [
- "a74bd57a-d516-4908-b3a0-6b92f1aad21b"
+ "1d017ab7-511c-4df0-a5ae-7aa495e7b768"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2746,35 +2809,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:48 GMT"
+ "Tue, 19 Jun 2018 10:47:26 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/credentials/ps3618?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2NyZWRlbnRpYWxzL3BzMzYxOD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"ps5207\",\r\n \"uri\": \"https://fakedb.contoso.com/\",\r\n \"userId\": \"ps6744\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "92"
+ ],
"x-ms-client-request-id": [
- "12c90f44-24d8-414f-ac5a-4f95e26a3f8c"
+ "8ed9a7d5-996c-4ddf-88cc-4947e34fac2c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.3720273S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -2782,7 +2848,7 @@
"chunked"
],
"x-ms-request-id": [
- "874a0732-24db-404f-99e0-1f9bdec684e0"
+ "5d4d7505-0355-46e5-bc79-6da8afbfe079"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2794,35 +2860,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:49 GMT"
+ "Tue, 19 Jun 2018 10:47:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/credentials/ps3618?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2NyZWRlbnRpYWxzL3BzMzYxOD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"ps5207\",\r\n \"uri\": \"https://fakedb.contoso.com/\",\r\n \"userId\": \"ps6744\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "92"
+ ],
"x-ms-client-request-id": [
- "39ce2f4e-bb1b-4551-b061-ca947e46a3d6"
+ "6cfe434c-943e-4d9e-af50-ee8e75e51e88"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.5624158S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -2830,7 +2899,7 @@
"chunked"
],
"x-ms-request-id": [
- "d7041ca4-0e74-4d23-b0d5-e4de0c546219"
+ "2b7af614-8c79-4237-b83f-de62ba6fb3f8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2842,31 +2911,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:49 GMT"
+ "Tue, 19 Jun 2018 10:47:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/credentials?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2NyZWRlbnRpYWxzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8ad080b-e778-467e-a611-af52ae8839c8"
+ "85cc9d17-6f2d-45d9-9cf1-a80209953dd0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.7939132S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"ps3618\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2878,7 +2947,7 @@
"chunked"
],
"x-ms-request-id": [
- "19a25c8d-0a13-4c6c-abb7-c4f2c064192b"
+ "94e143c0-2675-4c84-a40e-8dc044cde42c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2890,31 +2959,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:49 GMT"
+ "Tue, 19 Jun 2018 10:47:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/credentials/ps3618?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2NyZWRlbnRpYWxzL3BzMzYxOD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b35a480-e12e-49fa-9b4a-584b0c2b3d75"
+ "8e88c20a-ac88-4c5d-b4f9-0d8183b2c3f6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.9659524S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"credentialName\": \"ps3618\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2926,7 +2995,7 @@
"chunked"
],
"x-ms-request-id": [
- "5893d49f-953c-46bc-8d3c-64ad2ad385a3"
+ "aa7d3ce7-0235-43a7-9288-3907efc3968d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2938,31 +3007,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:49 GMT"
+ "Tue, 19 Jun 2018 10:47:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/credentials/ps3618?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2NyZWRlbnRpYWxzL3BzMzYxOD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25e44e87-4d37-4fe9-8599-2c37b4974f51"
+ "bcc05ba3-395b-4ce3-aa37-e957e9986e18"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.1532619S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps3618' does not exist. Trace: 3728355d-effe-4da0-83e2-600775f2d843 Time: 2018-06-19T03:47:22.5285413-07:00\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2974,7 +3043,7 @@
"chunked"
],
"x-ms-request-id": [
- "90e432ef-cec8-4577-97ae-9e15bc40acf3"
+ "3728355d-effe-4da0-83e2-600775f2d843"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2986,31 +3055,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:49 GMT"
+ "Tue, 19 Jun 2018 10:47:22 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/credentials/ps3618?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2NyZWRlbnRpYWxzL3BzMzYxOD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a6980f1a-3886-4ebf-86c0-ea877402ff46"
+ "1563fc15-4675-4b33-adb9-7d94a373110d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.3436577S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps3618' does not exist. Trace: 1f49be99-6501-466d-ba95-0ebe9c728a70 Time: 2018-06-19T03:47:25.2004741-07:00\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3022,7 +3091,7 @@
"chunked"
],
"x-ms-request-id": [
- "e07a01e4-e3e5-4afa-8862-23497e1c7d19"
+ "1f49be99-6501-466d-ba95-0ebe9c728a70"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3034,35 +3103,32 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:49 GMT"
+ "Tue, 19 Jun 2018 10:47:25 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/catalog/usql/databases/ps3498/credentials/ps3618?cascade=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2NyZWRlbnRpYWxzL3BzMzYxOD9jYXNjYWRlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3025381-195e-4921-9e28-e767756b978f"
+ "db43674d-76ac-4c1c-85e4-b4d4360f39f5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.5311604S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -3070,7 +3136,7 @@
"chunked"
],
"x-ms-request-id": [
- "10139afb-453e-4785-84d8-4f68d5bd1c2c"
+ "87bad59b-8804-492c-a24c-e2d358074c09"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3082,35 +3148,32 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:50 GMT"
+ "Tue, 19 Jun 2018 10:47:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/catalog/usql/databases/ps3498/credentials/ps3618?cascade=true&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2NyZWRlbnRpYWxzL3BzMzYxOD9jYXNjYWRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5b8c259f-ac07-43fd-9f57-a900c65226b0"
+ "f449ef4b-585c-43e6-a753-037136df2d42"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.7186648S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -3118,7 +3181,7 @@
"chunked"
],
"x-ms-request-id": [
- "3968486a-55c6-40af-82fc-1bc5bdc08338"
+ "62681472-e64f-4d14-9c05-eb45bfb04921"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3130,35 +3193,32 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:50 GMT"
+ "Tue, 19 Jun 2018 10:47:24 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/catalog/usql/databases/ps3498/secrets/ps6744?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NlY3JldHMvcHM2NzQ0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94b741f6-54b3-4958-9692-711ad51a5ea0"
+ "a4d95ee8-d4d0-4f90-81a6-3b02700d5c3f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.9189103S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -3166,7 +3226,7 @@
"chunked"
],
"x-ms-request-id": [
- "f01e7759-f865-4790-b369-ef80c73a01cd"
+ "0ed047f7-ef90-4306-9a5d-e390886cf933"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3178,35 +3238,32 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:50 GMT"
+ "Tue, 19 Jun 2018 10:47:25 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/catalog/usql/databases/ps3498/secrets?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "874511bf-1369-4e20-b6c6-d212440850c9"
+ "11f51165-6f7f-407e-ab4e-bdd5508af443"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.122204S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -3214,7 +3271,7 @@
"chunked"
],
"x-ms-request-id": [
- "8684cf34-2752-41c3-8d63-42495bda4e0a"
+ "1065b33e-dd26-450a-97ed-0a239e736c30"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3226,31 +3283,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:50 GMT"
+ "Tue, 19 Jun 2018 10:47:26 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/secrets/ps6744dup?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L3NlY3JldHMvcHM2NzQ0ZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99eaa475-3d10-4439-82ab-dd17df171cef"
+ "e377eb77-8860-4846-9a85-28a4066dc820"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.5443788S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps6744dup' does not exist. Trace: 2cab800d-71c1-4707-bb63-733fdba7159e Time: 2018-06-19T03:47:27.4817707-07:00\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3262,7 +3319,7 @@
"chunked"
],
"x-ms-request-id": [
- "31a49321-5d2d-4f20-a083-0e93e4e5b216"
+ "2cab800d-71c1-4707-bb63-733fdba7159e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3274,34 +3331,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:51 GMT"
+ "Tue, 19 Jun 2018 10:47:27 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "293e9fbc-e9e3-46a8-b122-515468b60a30"
+ "58561fdd-48d3-4204-ab2d-c7351e2bec18"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.7939171S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3310,7 +3367,10 @@
"chunked"
],
"x-ms-request-id": [
- "ad82f219-c06f-4148-9841-cddd4915a552"
+ "50c12a13-0bf1-432d-bb53-fe2f98e606b7"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3322,34 +3382,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:51 GMT"
+ "Tue, 19 Jun 2018 10:47:27 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "783b63c5-f1a4-42bc-ba2e-77c8a5c8d46e"
+ "ef87ef3d-9c33-4ce3-a538-aa10d2157d44"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.9657754S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3358,7 +3418,10 @@
"chunked"
],
"x-ms-request-id": [
- "5dbe50f6-df07-4efb-8f5a-2064431ea414"
+ "aa2baec4-ee74-42dc-aad3-0c7207af1e43"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3370,34 +3433,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:51 GMT"
+ "Tue, 19 Jun 2018 10:47:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "addfa649-2abc-4873-a7ae-ddba6221d82e"
+ "f226b3ff-e3b0-48f4-801c-b7a745a296dd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.168902S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3406,7 +3469,10 @@
"chunked"
],
"x-ms-request-id": [
- "77d90199-1d42-4d32-9b33-b078e2faac06"
+ "5bd90827-b1b9-4272-8965-da07567810fd"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3418,34 +3484,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:51 GMT"
+ "Tue, 19 Jun 2018 10:47:30 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ef8a507b-a5ec-48a1-a726-19dbb972c7cf"
+ "ece3d463-9b96-4d58-a8a1-5fea328c16f8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3876541S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"58d2027c-d19c-0f94-5c89-1b43101d3b96\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3454,7 +3520,10 @@
"chunked"
],
"x-ms-request-id": [
- "a93abdf6-9b2e-4193-92ff-5e7121b4f3c6"
+ "5d470265-b8be-4a53-b738-9b3f53ef7a5c"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3466,34 +3535,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:52 GMT"
+ "Tue, 19 Jun 2018 10:47:32 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30016442-735b-456a-ab34-545d29ff70c8"
+ "916ee0e5-cce8-407d-ad5c-968c860997f6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.593721S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3502,7 +3571,10 @@
"chunked"
],
"x-ms-request-id": [
- "93a9c5c5-de97-4d1f-b76c-c256951c3cb5"
+ "9c75daab-57a3-46f8-bef8-33467dee53f5"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3514,34 +3586,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:52 GMT"
+ "Tue, 19 Jun 2018 10:47:33 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd4f30f4-5240-4619-8a42-fdf0e4f6c02e"
+ "6457242c-4159-4dd6-9360-4205ec7cc30e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.7812169S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3550,7 +3622,10 @@
"chunked"
],
"x-ms-request-id": [
- "b5579b28-49e5-4349-921b-e418d819c871"
+ "466f3cbe-bf1e-4547-8649-68409b15de15"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3562,34 +3637,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:52 GMT"
+ "Tue, 19 Jun 2018 10:47:35 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbeb894d-1728-4972-96cc-bfee55aa16a0"
+ "0ff740f1-96a8-4f05-b621-969a6fcaced5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.2812228S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3598,7 +3673,10 @@
"chunked"
],
"x-ms-request-id": [
- "e9f81662-02cf-454f-a5ed-fcf26ec9b4c4"
+ "f72de5e8-d0ad-48bf-9b8e-e179b27ffc79"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3610,34 +3688,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:52 GMT"
+ "Tue, 19 Jun 2018 10:47:36 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d9d35526-4c0b-49b6-bdad-02a560e24df2"
+ "fefe79f8-9ee6-4ace-bf54-a181cecb519e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.4660125S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3646,7 +3724,10 @@
"chunked"
],
"x-ms-request-id": [
- "693b7242-9c6d-4ab9-ad7a-a1bc8ef8ed35"
+ "aacab007-af64-4dea-8c8f-ae687cb5d437"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3658,34 +3739,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:53 GMT"
+ "Tue, 19 Jun 2018 10:47:36 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e67da95f-403e-41f1-9bc2-e276d522ad89"
+ "30c3aece-ccb2-484a-84cc-6c5db02e55eb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6689076S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3694,7 +3775,10 @@
"chunked"
],
"x-ms-request-id": [
- "573488a2-8bda-4f37-b83c-a18180f0a41b"
+ "d95ef6f0-4dff-4cac-ad78-89f70657d049"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3706,34 +3790,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:53 GMT"
+ "Tue, 19 Jun 2018 10:47:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84eef968-9374-48e8-b96b-250253aab8b9"
+ "7be533db-f8b9-4122-8ecd-af71ea2fda03"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0597485S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3742,7 +3826,10 @@
"chunked"
],
"x-ms-request-id": [
- "8cf189d6-965f-4036-90f6-069c3f8f6e68"
+ "5da3330e-f2d4-45d8-92ac-1c5761c532ad"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3754,34 +3841,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:53 GMT"
+ "Tue, 19 Jun 2018 10:47:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc87825d-c5f6-4bb1-b374-54cc37466a31"
+ "49343238-37ad-4a8f-b0d8-54b54d459128"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.2783056S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3790,7 +3877,10 @@
"chunked"
],
"x-ms-request-id": [
- "a4db9d0f-01e5-4168-ba7c-a9d2701c8789"
+ "886a023f-db98-4dcb-8f31-9af8a899c2aa"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3802,34 +3892,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:53 GMT"
+ "Tue, 19 Jun 2018 10:47:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53fbf6d0-45ee-4593-8d52-7e4fe8a026f2"
+ "701d5dcc-5481-4dad-8fa5-be1fe694b24f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.5156035S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3838,7 +3928,10 @@
"chunked"
],
"x-ms-request-id": [
- "ee256b2c-24d3-4137-825a-929eba3e2290"
+ "00e25fa2-194a-4ce9-98b3-c515ce27d04b"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3850,34 +3943,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:54 GMT"
+ "Tue, 19 Jun 2018 10:47:28 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "739893d2-6612-4d8c-9c59-b3dbb04ed833"
+ "fb613bcf-7cdb-4bd5-a372-53f53986e9f6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.7472569S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3886,7 +3979,10 @@
"chunked"
],
"x-ms-request-id": [
- "ff7cccb3-9cf0-48e1-aec6-2667bc07efba"
+ "c0d6f210-c06f-403b-9b57-45394bda3893"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3898,34 +3994,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:54 GMT"
+ "Tue, 19 Jun 2018 10:47:41 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de76848f-575d-4bd8-829e-98f2ced47794"
+ "b004e312-0a41-4071-89dc-9e905436490e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9843624S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3934,7 +4030,10 @@
"chunked"
],
"x-ms-request-id": [
- "c54a8b0d-0915-4b3d-95f2-2d0e72594345"
+ "d0ea6e9b-03c9-489b-9985-a769f32c852b"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3946,34 +4045,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:54 GMT"
+ "Tue, 19 Jun 2018 10:47:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c915d7bd-cb12-46e1-a4d7-0148516f805b"
+ "0f1da107-b1d8-495d-bc7c-2a27ab69f20f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.1538487S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"58d2027c-d19c-0f94-5c89-1b43101d3b96\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3982,7 +4081,10 @@
"chunked"
],
"x-ms-request-id": [
- "9f39ab98-eaf4-4387-ae44-2ad4a599e527"
+ "fdb86ffb-bbd4-44c9-bd53-b9f0188b3285"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3994,34 +4096,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:54 GMT"
+ "Tue, 19 Jun 2018 10:47:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01fb86e4-a820-475a-a086-de172974025b"
+ "cc907f9d-3866-488d-8cc2-e2a4bf3173f5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.3720444S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -4030,7 +4132,10 @@
"chunked"
],
"x-ms-request-id": [
- "53c605f1-f6ed-4395-b755-eb54053c53bc"
+ "dbd76ddd-c1dc-4ef0-b55e-1d2b26601684"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4042,34 +4147,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:55 GMT"
+ "Tue, 19 Jun 2018 10:47:44 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce20be95-b6d6-405e-ab72-8d4b30fa9017"
+ "edc36678-9b19-4fcc-a091-c1e0cd69b4d2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.5753969S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -4078,7 +4183,10 @@
"chunked"
],
"x-ms-request-id": [
- "7cb6d7f9-0088-47c9-9d5a-c47905670620"
+ "9f3eecb5-10e5-41af-b486-c4b842549387"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4090,34 +4198,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:55 GMT"
+ "Tue, 19 Jun 2018 10:47:45 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13cbc1af-c8f3-467c-9674-1eae1057869b"
+ "769be2ff-4483-423d-8371-01b34c0e1195"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8095649S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -4126,7 +4234,10 @@
"chunked"
],
"x-ms-request-id": [
- "7cb2742f-2f64-4fb5-b62c-1534f3ed5d49"
+ "506647cc-082c-4a4c-83b9-6fa3165a2a3e"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4138,34 +4249,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:55 GMT"
+ "Tue, 19 Jun 2018 10:47:46 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47bbf778-596a-430c-95d2-5ab5ae55ee25"
+ "457bdf7f-48a8-4cff-aa15-c88ec457ff9d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.0000277S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -4174,7 +4285,10 @@
"chunked"
],
"x-ms-request-id": [
- "ebad66ec-4da8-4b03-bafe-12db1626fcbe"
+ "79e9ccd4-fb83-45f9-9e75-7218673dcc73"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4186,34 +4300,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:55 GMT"
+ "Tue, 19 Jun 2018 10:47:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee72ef8f-8d76-4264-8e47-5f8b2db50540"
+ "47305939-6b3c-48be-90b9-6366c6eb1b58"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.2356286S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -4222,7 +4336,10 @@
"chunked"
],
"x-ms-request-id": [
- "14ffe370-df72-4f05-8028-bc332da4b40e"
+ "5b0c45d9-26c6-4787-bce2-31b4a0e37f7f"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4234,34 +4351,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:55 GMT"
+ "Tue, 19 Jun 2018 10:47:48 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a3d6ebb-ef74-4fb4-8fc4-b7e6e4b53609"
+ "cd881db6-07ef-42cf-9b4d-7784fee03107"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.4970539S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -4270,7 +4387,10 @@
"chunked"
],
"x-ms-request-id": [
- "1e4bbd1f-6262-49b7-9a9d-af4ab668c6da"
+ "3c0fe775-f43d-47b3-9546-00bc427a349d"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4282,34 +4402,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:56 GMT"
+ "Tue, 19 Jun 2018 10:47:48 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6002f218-1f93-4dab-8175-77b5ef29e6a5"
+ "a5512beb-2ae9-4a95-b404-0b37222861f4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.6875138S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4954.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -4318,7 +4438,10 @@
"chunked"
],
"x-ms-request-id": [
- "598c07cd-4ab2-41d3-bc95-cd2a6c7de93a"
+ "61d44333-9b2a-40e8-abe4-4d141cc78cd0"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4330,35 +4453,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:56 GMT"
+ "Tue, 19 Jun 2018 10:47:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\",\r\n \"permission\": \"Use\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
+ ],
"x-ms-client-request-id": [
- "014de554-e69b-4c73-901d-8ea35283b9dc"
+ "fee43b53-4cdb-4f1d-8446-e1a78a7f3943"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.8877003S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4366,7 +4492,7 @@
"chunked"
],
"x-ms-request-id": [
- "167f4cca-0f5f-4162-9af8-7e5ac2be61a8"
+ "4146d238-1436-486f-b089-c5f36405aba8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4378,35 +4504,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:56 GMT"
+ "Tue, 19 Jun 2018 10:47:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"58d2027c-d19c-0f94-5c89-1b43101d3b96\",\r\n \"permission\": \"Use\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "108"
+ ],
"x-ms-client-request-id": [
- "4fcd218a-ca83-4e34-842f-b51896c534a5"
+ "e9283cd0-9280-40a6-bda6-33f5252916e2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.1533325S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4414,7 +4543,7 @@
"chunked"
],
"x-ms-request-id": [
- "9e71b2b9-c1da-4b1b-abfa-18af34b48052"
+ "cfcb61a4-966d-4206-aa88-06350fb724e0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4426,35 +4555,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:56 GMT"
+ "Tue, 19 Jun 2018 10:47:31 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"f52a4089-8a6e-4b07-b51e-7d9e59c454d5\",\r\n \"permission\": \"None\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "109"
+ ],
"x-ms-client-request-id": [
- "9afb1fd1-acc4-4cc6-bf7e-0ba6c0c5c8c5"
+ "6f1ffb3c-34bf-496c-86c9-4fcbda96707f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.3281932S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4462,7 +4594,7 @@
"chunked"
],
"x-ms-request-id": [
- "be30c938-6234-4271-867d-5be743173a39"
+ "cf8ba488-697d-4363-9a83-eb19417c380c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4474,35 +4606,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:56 GMT"
+ "Tue, 19 Jun 2018 10:47:34 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"508664df-998b-468b-ada4-11b8ee1ce574\",\r\n \"permission\": \"Use\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "108"
+ ],
"x-ms-client-request-id": [
- "3ee09332-6d7e-48ea-bfc1-1546c1344a2e"
+ "c7aac8ff-cdb7-44bf-b430-1c9be0a72ee4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4510,7 +4645,7 @@
"chunked"
],
"x-ms-request-id": [
- "f7898d46-ce0a-4caa-9281-d7ad1356b1c0"
+ "65af2941-c34b-412f-a20a-0f57f6901c9d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4522,35 +4657,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:57 GMT"
+ "Tue, 19 Jun 2018 10:47:36 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"677b6795-5f95-4be0-8467-953c7cd9b8e3\",\r\n \"permission\": \"None\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "111"
+ ],
"x-ms-client-request-id": [
- "56505da4-5cf2-4184-bad0-48b578b48594"
+ "4caed651-4875-4c46-bf74-23596b2cf186"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4558,7 +4696,7 @@
"chunked"
],
"x-ms-request-id": [
- "07849681-ed62-42ba-ac4d-0bcc6eeb6c0e"
+ "44f70aa3-0773-4383-a139-57aca71d9e90"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4570,35 +4708,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:57 GMT"
+ "Tue, 19 Jun 2018 10:47:37 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"408317d5-41c0-4034-82d2-7e8ceeb70644\",\r\n \"permission\": \"None\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "112"
+ ],
"x-ms-client-request-id": [
- "e464a940-63c8-4e17-b549-03c1bc3256e9"
+ "3e200be0-1e67-468e-8453-6ebbd2b3a40f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4606,7 +4747,7 @@
"chunked"
],
"x-ms-request-id": [
- "ae0a8089-cac4-47d2-8c29-6d6fdcaf1b6e"
+ "58fba916-2118-4338-b38f-c99920d5f6b2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4618,35 +4759,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:57 GMT"
+ "Tue, 19 Jun 2018 10:47:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9vcD1SRVZPS0VBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "83"
+ ],
"x-ms-client-request-id": [
- "97d62295-16c3-4953-a825-650178e4bd6d"
+ "868dc619-f89a-4869-a0d1-6e024e4a5297"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4654,7 +4798,7 @@
"chunked"
],
"x-ms-request-id": [
- "92707b16-2506-4bfe-9fcb-05f2760d2a80"
+ "18a0206d-1ef1-48db-948a-337f5cb46fad"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4666,35 +4810,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:57 GMT"
+ "Tue, 19 Jun 2018 10:47:30 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/ps3498/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMzNDk4L2FjbD9vcD1SRVZPS0VBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"58d2027c-d19c-0f94-5c89-1b43101d3b96\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "84"
+ ],
"x-ms-client-request-id": [
- "263a6142-16e5-48b0-bb69-ee7f62d4641c"
+ "da8e4d5a-e632-4c95-bf81-cd44fbb71207"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4702,7 +4849,7 @@
"chunked"
],
"x-ms-request-id": [
- "c7fc6580-8e54-4c63-b83d-705b03cbb168"
+ "d655ea16-9750-405b-ba81-84bcdad488b6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4714,35 +4861,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:58 GMT"
+ "Tue, 19 Jun 2018 10:47:33 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\",\r\n \"permission\": \"Use\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
+ ],
"x-ms-client-request-id": [
- "8f3cc059-79fa-41eb-8c8d-18ddf5c24a1b"
+ "be9af079-5439-4eaa-b2cd-65dd9cf516ec"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4750,7 +4900,7 @@
"chunked"
],
"x-ms-request-id": [
- "56d65864-b18f-4bcf-be52-8898f813b89f"
+ "e71ab9f0-45f8-407d-9468-8bd413945b7f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4762,35 +4912,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:58 GMT"
+ "Tue, 19 Jun 2018 10:47:41 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"58d2027c-d19c-0f94-5c89-1b43101d3b96\",\r\n \"permission\": \"Use\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "108"
+ ],
"x-ms-client-request-id": [
- "de812de1-896d-4b07-9bd4-f052bec73e85"
+ "0ab0482c-26d9-42ff-bfc5-cefa4b56f732"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4798,7 +4951,7 @@
"chunked"
],
"x-ms-request-id": [
- "0907c421-37c4-4769-a93e-4bc4435bf9fd"
+ "021f524a-1374-4ea2-be65-9d31f2d67c73"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4810,35 +4963,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:58 GMT"
+ "Tue, 19 Jun 2018 10:47:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"d4a953e9-7ad7-4228-a578-10fd0b5ef4f5\",\r\n \"permission\": \"None\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "109"
+ ],
"x-ms-client-request-id": [
- "81417033-819c-4f59-846e-d035bcafbd43"
+ "98df1ff7-80fb-4e9c-a891-81239802b90e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4846,7 +5002,7 @@
"chunked"
],
"x-ms-request-id": [
- "a57f03e4-59ce-40d3-b6a6-418ba0168335"
+ "531da2fa-9580-4caa-a4c9-51b3a8bb1a4e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4858,35 +5014,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:58 GMT"
+ "Tue, 19 Jun 2018 10:47:45 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"1f26095b-786d-48d0-ad62-a6982bb00a56\",\r\n \"permission\": \"Use\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "108"
+ ],
"x-ms-client-request-id": [
- "2cf43e35-de6a-4191-91e4-2f319715232c"
+ "f0c3bcb5-6385-459d-ac54-7ba505b78dda"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -4894,7 +5053,7 @@
"chunked"
],
"x-ms-request-id": [
- "59da7daa-716f-47a4-8a36-d73df7472528"
+ "a5be1ae1-c1b7-43d3-a97f-d2755cf81a63"
],
"X-Content-Type-Options": [
"nosniff"
@@ -4906,3596 +5065,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:12:58 GMT"
+ "Tue, 19 Jun 2018 10:47:46 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"dc4906b2-5298-416e-add5-76b3c170163e\",\r\n \"permission\": \"None\"\r\n}",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "47f15b0e-3372-449c-bb75-b5192195b33d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "62389ba0-db58-4e1b-9d54-58c558a0f741"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "44e8e171-5201-4fa5-ac94-e745dd6f8e2c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "fefd01a3-c5be-4e1f-ad39-b8c83fcff9f3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "76190c86-82f2-4095-abe8-b4d9620d75ad"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "791f2b2d-c151-4582-a595-f0477433141a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "997b1180-eec5-4fe2-8947-ee84c339abef"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c4f37357-4031-4454-9107-8e82668a3b8c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d5ed5186-4a20-4d19-bbcf-448d66afa6ae"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "64762449-4d78-4e38-be3b-dcf9c4790132"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5b76ea96-7051-47fe-a018-551c994a4315"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0a4f46a9-6347-4e04-9e97-9050a1e87871"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2d211ff0-8eeb-4d88-864a-16fa79f1f2f4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f1075ca5-1fc4-4e2d-a2cc-f1c163377560"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f7730386-4b13-4c41-99dc-433e556d75a9"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1e2b06cb-5e5f-4b83-9440-19551870b9c9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "13487dc5-9aed-431a-bad6-25a7da64e199"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8414792e-701b-4a11-87fb-6ebe0afaf7fe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "11db7143-6938-4052-aeb2-a6fd11d76456"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c6cb2824-2cf6-49b5-bdaf-0e2d8e231dc9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3779ad45-1ff5-4cca-b195-fd54ddbf6ad6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "17af3f71-ec20-4111-adf6-613b38b2fcf3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1d3c8e26-1a56-4e75-ad23-ee7fcdd16b9d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4c14c8fb-9a94-4ab2-a658-e199d920255c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "10b5ae4c-8db3-415d-9213-041fa6198892"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a4a401c8-7be7-4c88-b54a-9ee1f63c86d4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f30b25aa-98aa-482d-9800-d820188dd9d2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a43ed563-8090-471b-bfce-eee024a96c41"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "516226a2-ec71-472e-9375-9aa09e6657e6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bfa7d326-3fa7-47f4-bc09-25da75d05be3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ef9accfe-5d22-4970-b279-1a8d259b0ee7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0.204342S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1d07cc2e-b0a9-44e2-8eb0-c842e6e41509"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "59fe908e-b34b-486e-92fd-dd2760c6b12d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0.4188114S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ad8ade45-183c-4133-abcf-aff20a5e589b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "14d26f41-ce55-4bf5-ac8b-b7cdc1b2ace2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0.8406874S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "38f822d1-3b5d-4f81-8ae9-9125ff5f7682"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3d925ac9-98ac-4fe8-aae8-58ab5c711fe3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT1.062483S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d58326d2-7d3c-4a30-96b5-a434c3861421"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7113c8ea-0981-4224-a213-50b70b8dde95"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT1.2655891S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6c6b3ca5-5880-4165-9c0a-a5e3bd53d298"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "590fb891-c2e3-4c1b-a08c-5fa73ed6b7ac"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT1.4687507S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bba310f1-c6b4-4e4b-a600-dcacc1cb5b51"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8f642948-8606-4fec-b5a1-2a3d019581c0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT1.6531764S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0a284e01-527f-4246-a4b6-d969a0519c55"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ca8d6222-d554-4468-afdc-ab1dd03d76c7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT1.8593481S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4d4fb56b-39a2-4416-8771-9ce74bc44d38"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e66f9cca-0ffc-44db-a6c1-96ebaf15423d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT2.0637496S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3db520fe-1a65-415a-93a3-a2ca49452337"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c46f3477-8aa0-42e1-8835-7ff15ca9d0e0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT2.2499993S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "50d69fa1-73fe-4dff-980a-b5582d076cde"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6e149cea-dad6-4422-851e-739310bc1fc4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT2.4687492S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4be20a49-af6d-464d-a210-cffb22a754f1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4dd5c9e2-fe1e-40f2-b9b9-3b44fd71e60f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT2.7469544S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "80e640e0-735d-4c23-8ae9-df02ad0981b1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e2b04140-a9c4-4ad6-867a-de0fad4f790e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT2.9500776S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8b8d25fe-e164-43ae-ab4f-4a5f7fe56ed7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "51ad2d0c-ba14-4053-812e-803f39d5a17d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT3.2343783S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d39b2b70-aef8-4202-ac78-f4798e3599f5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "38ecfad9-7ee5-4784-a077-c89417c4df9d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT3.434473S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5240073d-5d93-4aaf-b2b6-ae5ee6f39962"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "118d7cd2-a0cc-42b0-a763-78415b19bc02"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT3.6250184S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "327dd698-4a91-4d1d-951c-f358c338bd2d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:07 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "69456b75-7d9e-408e-b95b-d3cdf3296767"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT3.8250873S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "71ced98b-cdd0-4798-98d4-4ef6dd53efa3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:07 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0fedb02c-f727-4d1a-8a46-3b7ad19967c3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT4.059462S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d1836162-d305-4d14-a81b-0d60c23bdf78"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:07 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e8d7158b-9f3c-4a1f-894e-23039068138e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT4.2656392S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3242a543-ead4-46dc-b9fc-20135cafe653"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:07 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c3c0712b-8ba2-4aa3-9fc0-c675fe10a335"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT4.4816691S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "36a6ed35-94af-431e-869f-0512efee54eb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f184886e-887f-4036-80a7-abe436746e56"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT4.7344209S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "64d192cb-45e3-4e5d-bf33-25f7bf7d872a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "52009312-ab84-4347-b335-e02c00915605"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT4.9188432S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a6a6da7c-cf4f-44c0-9475-84f3aa754fda"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "38aef2d9-56c8-47aa-a8b0-815b5d39da45"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT5.121951S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ab3bcf66-78c8-4823-afe5-67ed3a559aa8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "315ce31f-1aa1-49e9-abf8-af75081cc356"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT5.312985S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "9bc2025f-8999-444f-bd8c-b7c1869caf82"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a16bc40e-e405-4526-a387-9a473e039ec7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT5.5282169S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "53cfc5b3-4c67-4f77-9d5d-575cd4e3c423"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2241b87c-0c0f-4fc3-94e5-0de1c1b52149"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT5.7469698S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "901f0408-a3c0-4afb-8741-f24096a4c98d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "01804e91-d351-455c-99a7-a37a354b06af"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT5.9500943S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4162ad18-1592-4e70-9816-b6bfa0e197ff"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "64322403-d1cf-42f2-ab63-8eda4f749a8c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT6.1376008S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bd6a8a13-bbec-4366-9193-ea5ad5ee137d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9282530b-5546-494e-9e9a-d07097200db6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT6.3438148S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7fdbd764-23f1-4723-b6f5-35c1ccc7a5c6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3c8ea451-92f0-48be-9d35-f0e7b2e2e21e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT6.543848S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c6179006-3bd6-4aa5-b656-f39d70f4e222"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:10 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4357c9e6-187f-4ef3-8309-e8a4169e3e1b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT6.7313494S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d82bbf3a-e17e-4d30-9722-974e98a8ae09"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:10 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7e7a6d9b-4478-4d3a-8cce-bc912e15ad40"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT6.9344593S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "44c0aab7-adc1-492d-8efa-a91ea65b607b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:10 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "12c1b7ba-68d6-4128-beba-a7a703038279"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT7.122336S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "31ee56ec-f5f2-49b9-92f9-7c5a7c2f7e9a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:10 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/b3d6510d-9d88-468a-997d-c9cc00095267?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYjNkNjUxMGQtOWQ4OC00NjhhLTk5N2QtYzljYzAwMDk1MjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ea483005-796b-4b32-890b-0ba662426e93"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"b3d6510d-9d88-468a-997d-c9cc00095267\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"startTime\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"endTime\": \"2018-02-08T16:13:10.5192735-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-02-08T16:12:41.9721467-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-02-08T16:12:42.5659032-08:00\",\r\n \"details\": \"Compilation:8dfa9c55-84e6-4cbd-8ef4-9fe4992b0beb;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0035488-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0191744-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6923fdb-fa78-419c-94f4-c6c88b0b000a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-02-08T16:12:58.0348007-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-02-08T16:13:03.5035815-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-02-08T16:13:10.503668-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6923fdb-fa78-419c-94f4-c6c88b0b000a\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps9844; CREATE DATABASE ps9844;\\n\\tCREATE TABLE ps9844.dbo.ps3056\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps9844.dbo.ps3056 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps9844.dbo.ps9220;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps2316.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/02/09/00/12/b3d6510d-9d88-468a-997d-c9cc00095267/algebra.xml\",\r\n \"yarnApplicationId\": 2235052,\r\n \"yarnApplicationTimeStamp\": 1517039202056,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.4376456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT7.0000865S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2c07110a-ddff-4b5f-8c6d-702122950f25"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:10 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2203d950-f5f7-4cc1-8680-1a389670a956"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"b8afbf13-bd87-435a-bbab-68394bee55db\"\r\n },\r\n {\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"version\": \"7572816f-8cf2-4c35-894d-1deff710cd7d\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "893a049a-6482-4361-926f-4587fcbac8e3"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:11 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d808eecb-8dc8-409e-8985-8cba6f57d97f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"version\": \"7572816f-8cf2-4c35-894d-1deff710cd7d\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d738258b-738e-4066-a515-86505fe1240a"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:11 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/tables?basic=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3RhYmxlcz9iYXNpYz1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7e7fa31c-a5ef-4e78-b28a-cf6ad3b6fbda"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"ps3056\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"e9c652d6-0e34-469a-984e-d68594ad1cee\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.97-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.97-08:00\",\r\n \"version\": \"12e90022-7976-4fc3-8605-2aaa76697c6c\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "fd7715df-44bc-4a2d-8d2e-9a1203a106ed"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:11 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/tables?basic=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3RhYmxlcz9iYXNpYz1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a9d7ba40-1136-4c61-92f5-7928d342e3f9"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"ps3056\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"e9c652d6-0e34-469a-984e-d68594ad1cee\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.97-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.97-08:00\",\r\n \"version\": \"12e90022-7976-4fc3-8605-2aaa76697c6c\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "75af5065-b9d5-46cf-8704-a4281bd371d6"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/tables/ps3056?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3RhYmxlcy9wczMwNTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "22311c50-c8e9-4020-9042-cfeba69e2288"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"tableName\": \"ps3056\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"e9c652d6-0e34-469a-984e-d68594ad1cee\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.97-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.97-08:00\",\r\n \"version\": \"12e90022-7976-4fc3-8605-2aaa76697c6c\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "91e94812-1d65-4dc6-a634-fe23d931dc5d"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/tables/ps3056/partitions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3RhYmxlcy9wczMwNTYvcGFydGl0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "16eabda4-2605-45f3-b347-5d47ddbcb363"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"ps3056_Partition_1a0fe373-5908-480a-b318-ed5e4c9806eb\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createTime\": \"2018-02-09T00:13:05.97-08:00\",\r\n \"parentName\": {\r\n \"server\": \"81460bb9-d501-4562-9228-9af44fc0d9a1\",\r\n \"firstPart\": \"ps9844\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"ps3056\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"a5e80fb2-2170-40eb-b692-7b2d875208dd\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e4e88d1e-cd2b-405e-8662-e7169592ba95"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/tables/ps3056/partitions/ps3056_Partition_1a0fe373-5908-480a-b318-ed5e4c9806eb?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3RhYmxlcy9wczMwNTYvcGFydGl0aW9ucy9wczMwNTZfUGFydGl0aW9uXzFhMGZlMzczLTU5MDgtNDgwYS1iMzE4LWVkNWU0Yzk4MDZlYj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9b7e1479-f4ac-4667-bca1-9ebdcfa7e197"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"ps3056_Partition_1a0fe373-5908-480a-b318-ed5e4c9806eb\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createTime\": \"2018-02-09T00:13:05.97-08:00\",\r\n \"parentName\": {\r\n \"server\": \"81460bb9-d501-4562-9228-9af44fc0d9a1\",\r\n \"firstPart\": \"ps9844\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"ps3056\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"a5e80fb2-2170-40eb-b692-7b2d875208dd\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3c9100c0-7de9-436c-8293-0e41b9003e8c"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3RhYmxldmFsdWVkZnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "10044fe8-3c1f-4133-a548-1897996873c9"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"tvfName\": \"ps9220\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"version\": \"e41f42d7-b6b5-4b23-9132-a267204b000c\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7e1ac5e6-73cc-4ee5-b8fb-ddec7d46613a"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/tablevaluedfunctions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3RhYmxldmFsdWVkZnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "75d27f4e-4156-4c5d-b19e-81b4128a81af"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"tvfName\": \"ps9220\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"version\": \"e41f42d7-b6b5-4b23-9132-a267204b000c\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "216752ac-2202-401a-83b5-5da8f63b25de"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/tablevaluedfunctions/ps9220?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3RhYmxldmFsdWVkZnVuY3Rpb25zL3BzOTIyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f21af944-4205-4cba-901b-294cd24708e1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"tvfName\": \"ps9220\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps9844.dbo.ps9220()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"version\": \"e41f42d7-b6b5-4b23-9132-a267204b000c\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a2abb005-00b3-4a92-8e0b-da8420cf4e4a"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/procedures?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3Byb2NlZHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d7567665-4db7-46b7-a5e1-0e293652c8da"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"procName\": \"ps7993\",\r\n \"definition\": \"CREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"0ee3a03d-ec2f-4507-b251-5fb3dd2cd8e7\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "cc5e5166-42f4-4823-9046-58fa45a394ef"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:14 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/procedures/ps7993?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3Byb2NlZHVyZXMvcHM3OTkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b83e00c2-6928-4812-a1d8-74c01bc8f705"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"procName\": \"ps7993\",\r\n \"definition\": \"CREATE PROCEDURE ps9844.dbo.ps7993()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps9844.dbo.ps3702 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"0ee3a03d-ec2f-4507-b251-5fb3dd2cd8e7\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "37b76403-2d68-41c5-a944-14ffcac14d74"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:14 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/views?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3ZpZXdzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "dd839426-7482-412f-a5a3-ad8aae93ef57"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"viewName\": \"ps3702\",\r\n \"definition\": \"CREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"version\": \"be4de9c5-0307-42ea-9890-4c6e402731a5\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5495afdd-5619-412b-944e-60c908793703"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:14 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/views?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3ZpZXdzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7e12f6a2-953a-4edf-a7d9-8621b5aa739b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"viewName\": \"ps3702\",\r\n \"definition\": \"CREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"version\": \"be4de9c5-0307-42ea-9890-4c6e402731a5\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7eeeb6bb-b7ef-43c0-bd0f-d3cb5c551812"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:14 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/schemas/dbo/views/ps3702?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NjaGVtYXMvZGJvL3ZpZXdzL3BzMzcwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "07bc29aa-b5e4-49e5-a5d6-8f129f0ffed4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps1446.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"viewName\": \"ps3702\",\r\n \"definition\": \"CREATE VIEW ps9844.dbo.ps3702 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps1446\",\r\n \"databaseName\": \"ps9844\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"updateTime\": \"2018-02-09T00:13:05.987-08:00\",\r\n \"version\": \"be4de9c5-0307-42ea-9890-4c6e402731a5\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c77183cf-e03e-47ad-8246-0ca8de0d1901"
- ],
- "OData-Version": [
- "4.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:15 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/secrets/ps2749?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NlY3JldHMvcHMyNzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"ps3455\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "69"
- ],
- "x-ms-client-request-id": [
- "21190bd3-2d54-4dad-9a8b-3140e9181309"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "9142b7c9-7ca7-4fe4-b726-c5230e6e8d8c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:16 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/secrets/ps2749dup?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NlY3JldHMvcHMyNzQ5ZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"ps3455\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "69"
- ],
- "x-ms-client-request-id": [
- "57b1365a-cd3f-437d-8703-5f72ff9359cd"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1e5e8387-7ae6-496a-89d4-cad6d4ec4b88"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:17 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/secrets/ps2749?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NlY3JldHMvcHMyNzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5482813e-61a7-47db-868b-092690355378"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"creationTime\": \"2018-02-09T00:13:16.0436734Z\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bd4df496-77b3-470a-bff2-eacf4a8a26cd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:17 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/secrets/ps2749?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NlY3JldHMvcHMyNzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "066f14b9-f072-4f83-9fe8-84577c9f2eac"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps2749' does not exist. Trace: f43faaac-bbf3-490e-9157-dd0f9eb4ee1f Time: 2018-02-08T16:13:24.5539070-08:00\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f43faaac-bbf3-490e-9157-dd0f9eb4ee1f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:23 GMT"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/credentials/ps2996?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L2NyZWRlbnRpYWxzL3BzMjk5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"ps3455\",\r\n \"uri\": \"https://fakedb.contoso.com/\",\r\n \"userId\": \"ps2749\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "92"
- ],
- "x-ms-client-request-id": [
- "946ed53a-90d7-4050-9ec2-758cdf21940f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "68cfa514-a890-49a2-a388-c70a040d3e7a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:19 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/credentials/ps2996?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L2NyZWRlbnRpYWxzL3BzMjk5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"ps3455\",\r\n \"uri\": \"https://fakedb.contoso.com/\",\r\n \"userId\": \"ps2749\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "92"
- ],
- "x-ms-client-request-id": [
- "93fb19bd-2e03-4a36-bf60-28e260fbec29"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ce1e1b7e-cc6e-4407-a60f-384f236599d7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/credentials?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L2NyZWRlbnRpYWxzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6cd5323b-a462-42b0-88cd-48e34994da31"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"ps2996\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "881e50d3-ad3c-4ce4-9af2-71f0f845ceb2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:19 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/credentials/ps2996?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L2NyZWRlbnRpYWxzL3BzMjk5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0c58bc80-67a3-456c-a541-d0c8a8bf73ea"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"credentialName\": \"ps2996\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2ecbd786-6030-4c69-ba48-bcc145844d66"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Feb 2018 00:13:19 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/credentials/ps2996?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L2NyZWRlbnRpYWxzL3BzMjk5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f9c3a902-215c-4a8d-b900-6e25948cfb43"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps2996' does not exist. Trace: 1ead9013-b771-4fb1-891c-b72dc7b055ff Time: 2018-02-08T16:13:21.3195024-08:00\"\r\n }\r\n}",
- "ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1ead9013-b771-4fb1-891c-b72dc7b055ff"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "Content-Length": [
+ "111"
],
- "Date": [
- "Fri, 09 Feb 2018 00:13:20 GMT"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/credentials/ps2996?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L2NyZWRlbnRpYWxzL3BzMjk5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
"x-ms-client-request-id": [
- "ebe3a0cc-facb-4665-895d-a6c56f82c815"
+ "04e06614-1702-4146-a9f6-fe00a6598d07"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps2996' does not exist. Trace: fe3780b9-81fa-4af7-ac87-dd993516f5f7 Time: 2018-02-08T16:13:23.6945151-08:00\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -8503,7 +5104,7 @@
"chunked"
],
"x-ms-request-id": [
- "fe3780b9-81fa-4af7-ac87-dd993516f5f7"
+ "4bf185f1-3b96-4bcd-8af1-8a9df76cdf83"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8515,28 +5116,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:23 GMT"
+ "Tue, 19 Jun 2018 10:47:47 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps9844/credentials/ps2996?cascade=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L2NyZWRlbnRpYWxzL3BzMjk5Nj9jYXNjYWRlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "",
+ "RequestBody": "{\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"324f4b57-4276-4319-806b-c0478325daf3\",\r\n \"permission\": \"None\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "112"
+ ],
"x-ms-client-request-id": [
- "51e2d79e-fa90-4c91-b2d9-7759ecf0ddd5"
+ "766f8618-5f9c-4f30-9064-28d277da5a34"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -8548,7 +5155,7 @@
"chunked"
],
"x-ms-request-id": [
- "c9903e10-5f97-4647-84e3-dbb1812c1995"
+ "2cc9318b-2fe2-48df-9765-f82a4811bcd9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8560,73 +5167,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:20 GMT"
+ "Tue, 19 Jun 2018 10:47:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps9844/credentials/ps2996?cascade=true&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L2NyZWRlbnRpYWxzL3BzMjk5Nj9jYXNjYWRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9UkVWT0tFQUNFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "POST",
- "RequestBody": "",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\"\r\n}",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "c8538e50-3cd7-4507-91bf-c6abe06bfb5f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8f793f09-949c-4fe7-9f4d-2a5bf9534791"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "Content-Length": [
+ "83"
],
- "Date": [
- "Fri, 09 Feb 2018 00:13:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/secrets/ps2749?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NlY3JldHMvcHMyNzQ5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
"x-ms-client-request-id": [
- "18c6e816-651d-4f8f-9329-f33b39bc0466"
+ "11979cad-8d55-4b14-a6e4-bee08c225a6e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -8638,7 +5206,7 @@
"chunked"
],
"x-ms-request-id": [
- "3c9c4bf2-af0e-4424-a947-2ed257d5c709"
+ "1dfeddb4-b963-44d9-ae3d-5fd8223c535e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8650,80 +5218,38 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:23 GMT"
+ "Tue, 19 Jun 2018 10:47:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps9844/secrets?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "DELETE",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9UkVWT0tFQUNFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"58d2027c-d19c-0f94-5c89-1b43101d3b96\"\r\n}",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "dbd7d8f2-f4dd-42a9-b231-e7108b27863c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "432a0678-7e8b-48d0-a8ec-603c766fed45"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "Content-Length": [
+ "84"
],
- "Date": [
- "Fri, 09 Feb 2018 00:13:24 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/ps9844/secrets/ps2749dup?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM5ODQ0L3NlY3JldHMvcHMyNzQ5ZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
"x-ms-client-request-id": [
- "50d2ca21-26d2-4de6-aae9-90fe8ce87b84"
+ "17c94b29-14c9-4787-bfa3-71662b1c42bd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps2749dup' does not exist. Trace: 7d4a54a3-b275-45a9-ab69-4082f7fe27da Time: 2018-02-08T16:13:25.7570258-08:00\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -8731,7 +5257,7 @@
"chunked"
],
"x-ms-request-id": [
- "7d4a54a3-b275-45a9-ab69-4082f7fe27da"
+ "98f2eab7-cbc5-4c49-9069-3b16477da7e9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8743,28 +5269,28 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:25 GMT"
+ "Tue, 19 Jun 2018 10:47:44 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeAnalytics/accounts/ps1446?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTQ0Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d27cc13-7adc-481d-9818-ba119ded9592"
+ "8c4e73a9-30d8-4f6c-9dc6-0cd79662dcb2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -8778,29 +5304,38 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/bafad788-3030-4b29-9e51-2a6754992bc41?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "2b5b4f43-cd4f-414f-88b4-35ab6a920cc0"
+ "7cfdbf39-90c7-46b1-99ca-486fc3ecbe2e"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "adc68f85-8b38-4f30-bcaa-1a0f9cc84542"
+ "72675fe8-e59b-4b78-bcf4-9c6abb64a4a5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001329Z:adc68f85-8b38-4f30-bcaa-1a0f9cc84542"
+ "AUSTRALIAEAST:20180619T104756Z:72675fe8-e59b-4b78-bcf4-9c6abb64a4a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:29 GMT"
+ "Tue, 19 Jun 2018 10:47:56 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954/operationresults/1?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -8812,31 +5347,28 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMzE2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/bafad788-3030-4b29-9e51-2a6754992bc41?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9iYWZhZDc4OC0zMDMwLTRiMjktOWU1MS0yYTY3NTQ5OTJiYzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "dededa79-b4e6-4978-8b11-238cfb37f610"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
@@ -8844,38 +5376,29 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/62160f91-75f0-49f6-8d72-4d53ac44d1df1?api-version=2016-11-01&expanded=true"
- ],
"x-ms-request-id": [
- "238aba7e-8592-496b-a1b7-cf366a296ce3"
+ "72ca33c0-1cee-437a-94b8-b2137d2d2ec6"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1183"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "0c06aa78-d06a-40bc-9c30-045063e87bd9"
+ "799837e7-71b5-46db-ac0c-9875929b7a2e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001333Z:0c06aa78-d06a-40bc-9c30-045063e87bd9"
+ "AUSTRALIAEAST:20180619T104808Z:799837e7-71b5-46db-ac0c-9875929b7a2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:33 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316/operationresults/1?api-version=2016-11-01"
+ "Tue, 19 Jun 2018 10:48:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -8887,28 +5410,25 @@
"ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/62160f91-75f0-49f6-8d72-4d53ac44d1df1?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzYyMTYwZjkxLTc1ZjAtNDlmNi04ZDcyLTRkNTNhYzQ0ZDFkZjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4621/providers/Microsoft.DataLakeAnalytics/accounts/ps4954/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk1NC9vcGVyYXRpb25yZXN1bHRzLzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -8917,31 +5437,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9ebf1ad3-ab43-4dd4-97e9-646d5967b200"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "1e3b3a04-9e95-4889-baef-46026f0325b7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14997"
],
"x-ms-correlation-request-id": [
- "cf84c45b-c0ea-4d72-b8e2-e757b1ebf29e"
+ "022f1705-59f2-46f0-89df-5db03b11e3b3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001344Z:cf84c45b-c0ea-4d72-b8e2-e757b1ebf29e"
+ "AUSTRALIAEAST:20180619T104809Z:022f1705-59f2-46f0-89df-5db03b11e3b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:43 GMT"
+ "Tue, 19 Jun 2018 10:48:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -8953,16 +5470,22 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3232/providers/Microsoft.DataLakeStore/accounts/ps2316/operationresults/1?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMzIzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMzE2L29wZXJhdGlvbnJlc3VsdHMvMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4621/providers/Microsoft.DataLakeStore/accounts/ps9941?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDYyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "25e45f2d-8e27-46b8-a8a4-f6234c3fb0a8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -8980,28 +5503,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fccb46e8-6971-45af-9dbf-e2bbd723e020"
+ "d4d43116-7894-49bf-a088-94be9c4acc8e"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "8da8645d-1468-4448-afdf-41074ff5d0f9"
+ "0cca8462-2f42-480e-9de3-d1905bf41899"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001345Z:8da8645d-1468-4448-afdf-41074ff5d0f9"
+ "AUSTRALIAEAST:20180619T104820Z:0cca8462-2f42-480e-9de3-d1905bf41899"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:44 GMT"
+ "Tue, 19 Jun 2018 10:48:19 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -9013,16 +5536,25 @@
"ASP.NET"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3232?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMzIzMj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4621?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDYyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb9ae0f9-d4de-4982-be6c-c11531a03172"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -9039,44 +5571,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "d9fc37fc-dee0-4f7c-a888-5f7c27b00bac"
+ "ea6fed9e-cb4e-4dd0-b2c6-99a319899712"
],
"x-ms-correlation-request-id": [
- "d9fc37fc-dee0-4f7c-a888-5f7c27b00bac"
+ "ea6fed9e-cb4e-4dd0-b2c6-99a319899712"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001346Z:d9fc37fc-dee0-4f7c-a888-5f7c27b00bac"
+ "AUSTRALIAEAST:20180619T104824Z:ea6fed9e-cb4e-4dd0-b2c6-99a319899712"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:46 GMT"
+ "Tue, 19 Jun 2018 10:48:24 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMyMzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MjEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMyMzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeU16SXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MjEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk1qRXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -9094,43 +5629,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14974"
+ "14999"
],
"x-ms-request-id": [
- "fd62bac6-0953-46e1-ad0c-ddaa44f63f78"
+ "2c056200-a0fe-4b2c-8926-58f526d45727"
],
"x-ms-correlation-request-id": [
- "fd62bac6-0953-46e1-ad0c-ddaa44f63f78"
+ "2c056200-a0fe-4b2c-8926-58f526d45727"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001346Z:fd62bac6-0953-46e1-ad0c-ddaa44f63f78"
+ "AUSTRALIAEAST:20180619T104840Z:2c056200-a0fe-4b2c-8926-58f526d45727"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:13:46 GMT"
+ "Tue, 19 Jun 2018 10:48:39 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMyMzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MjEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMyMzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeU16SXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MjEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk1qRXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -9148,43 +5686,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14973"
+ "14998"
],
"x-ms-request-id": [
- "9f65fa42-c97b-461e-b463-4f9f7e04bfc6"
+ "586d4fc5-dc9c-49d3-baa6-9f1c6974bfc1"
],
"x-ms-correlation-request-id": [
- "9f65fa42-c97b-461e-b463-4f9f7e04bfc6"
+ "586d4fc5-dc9c-49d3-baa6-9f1c6974bfc1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001401Z:9f65fa42-c97b-461e-b463-4f9f7e04bfc6"
+ "AUSTRALIAEAST:20180619T104855Z:586d4fc5-dc9c-49d3-baa6-9f1c6974bfc1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:14:01 GMT"
+ "Tue, 19 Jun 2018 10:48:55 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMyMzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MjEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMyMzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeU16SXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MjEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk1qRXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -9198,47 +5739,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14997"
],
"x-ms-request-id": [
- "dd3764ce-296f-4334-b8d6-e0da6463b30f"
+ "8a0fd758-80e3-47ac-a49a-c7482a97960e"
],
"x-ms-correlation-request-id": [
- "dd3764ce-296f-4334-b8d6-e0da6463b30f"
+ "8a0fd758-80e3-47ac-a49a-c7482a97960e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001417Z:dd3764ce-296f-4334-b8d6-e0da6463b30f"
+ "AUSTRALIAEAST:20180619T104911Z:8a0fd758-80e3-47ac-a49a-c7482a97960e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:14:16 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMyMzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Tue, 19 Jun 2018 10:49:10 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMyMzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeU16SXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MjEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk1qRXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -9253,25 +5791,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14971"
+ "14996"
],
"x-ms-request-id": [
- "5cc5533b-9389-4236-a1b2-fb16450c3af5"
+ "d0b7f3cf-9ffc-4de6-84f9-9874e383df89"
],
"x-ms-correlation-request-id": [
- "5cc5533b-9389-4236-a1b2-fb16450c3af5"
+ "d0b7f3cf-9ffc-4de6-84f9-9874e383df89"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180209T001432Z:5cc5533b-9389-4236-a1b2-fb16450c3af5"
+ "AUSTRALIAEAST:20180619T104911Z:d0b7f3cf-9ffc-4de6-84f9-9874e383df89"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 09 Feb 2018 00:14:31 GMT"
+ "Tue, 19 Jun 2018 10:49:11 GMT"
]
},
"StatusCode": 200
@@ -9279,23 +5820,23 @@
],
"Names": {
"": [
- "ps3232",
- "ps1446",
- "ps2316",
- "ps9844",
- "ps3056",
- "ps9220",
- "ps3702",
- "ps7993",
- "ps2996",
- "ps2749",
- "ps3455"
+ "ps4621",
+ "ps4954",
+ "ps9941",
+ "ps3498",
+ "ps3908",
+ "ps1540",
+ "ps577",
+ "ps7034",
+ "ps3618",
+ "ps6744",
+ "ps5207"
],
"catalogCreationJob01": [
- "b3d6510d-9d88-468a-997d-c9cc00095267"
+ "b74c7ea6-7005-4985-8488-3ef0d174559e"
]
},
"Variables": {
- "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb"
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaComputePolicy.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaComputePolicy.json
index 7ff7002b41c2..d163165a62a2 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaComputePolicy.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaComputePolicy.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,22 +28,25 @@
"1199"
],
"x-ms-request-id": [
- "38f741a6-200b-4049-b965-3c9114c7b73c"
+ "4120fdd9-e65d-42ab-9e7f-ce7fa5754610"
],
"x-ms-correlation-request-id": [
- "38f741a6-200b-4049-b965-3c9114c7b73c"
+ "4120fdd9-e65d-42ab-9e7f-ce7fa5754610"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030956Z:38f741a6-200b-4049-b965-3c9114c7b73c"
+ "AUSTRALIAEAST:20180607T133649Z:4120fdd9-e65d-42ab-9e7f-ce7fa5754610"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:09:56 GMT"
+ "Thu, 07 Jun 2018 13:36:49 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14999"
],
"x-ms-request-id": [
- "b4157fad-0253-4495-9147-f490b98ec6d0"
+ "d49ab417-48d9-4008-92de-8b8d95bd9a69"
],
"x-ms-correlation-request-id": [
- "b4157fad-0253-4495-9147-f490b98ec6d0"
+ "d49ab417-48d9-4008-92de-8b8d95bd9a69"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030956Z:b4157fad-0253-4495-9147-f490b98ec6d0"
+ "AUSTRALIAEAST:20180607T133649Z:d49ab417-48d9-4008-92de-8b8d95bd9a69"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:09:56 GMT"
+ "Thu, 07 Jun 2018 13:36:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6602?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjYwMj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3053?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzA1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "ad95c70b-3c86-4f9e-bb88-3d97c6d4f682"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602\",\r\n \"name\": \"ps6602\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053\",\r\n \"name\": \"ps3053\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,49 +142,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "b836d896-8ad5-4206-8ba9-0d8703cf86e1"
+ "6f1779e6-0e2c-42a2-8e01-ab4f0eb2b27e"
],
"x-ms-correlation-request-id": [
- "b836d896-8ad5-4206-8ba9-0d8703cf86e1"
+ "6f1779e6-0e2c-42a2-8e01-ab4f0eb2b27e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031008Z:b836d896-8ad5-4206-8ba9-0d8703cf86e1"
+ "AUSTRALIAEAST:20180607T133659Z:6f1779e6-0e2c-42a2-8e01-ab4f0eb2b27e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:07 GMT"
+ "Thu, 07 Jun 2018 13:36:58 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e78998ca-0baa-4e2b-a846-c4fd4754716d"
+ "5a9f4179-533a-452b-9689-5916211f632c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9195' under resource group 'ps6602' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps7496' under resource group 'ps3053' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -187,46 +205,49 @@
"gateway"
],
"x-ms-request-id": [
- "9c7b5632-bf66-49f0-a407-371ce4d0704d"
+ "bb29fa0a-5bb9-4fc1-be8c-f7a31eef4323"
],
"x-ms-correlation-request-id": [
- "9c7b5632-bf66-49f0-a407-371ce4d0704d"
+ "bb29fa0a-5bb9-4fc1-be8c-f7a31eef4323"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031008Z:9c7b5632-bf66-49f0-a407-371ce4d0704d"
+ "AUSTRALIAEAST:20180607T133700Z:bb29fa0a-5bb9-4fc1-be8c-f7a31eef4323"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:07 GMT"
+ "Thu, 07 Jun 2018 13:37:00 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ab4a5b8-52d3-4f0b-8189-82d1cf5f398a"
+ "66ff4cf2-bd78-4d17-9879-7f28269fe34d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9195' under resource group 'ps6602' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps7496' under resource group 'ps3053' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -244,46 +265,49 @@
"gateway"
],
"x-ms-request-id": [
- "a9fc78aa-7435-43a0-b80f-f0c6f43eafcf"
+ "d79324aa-3c3b-430a-ba10-5e1a6ee09f68"
],
"x-ms-correlation-request-id": [
- "a9fc78aa-7435-43a0-b80f-f0c6f43eafcf"
+ "d79324aa-3c3b-430a-ba10-5e1a6ee09f68"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031049Z:a9fc78aa-7435-43a0-b80f-f0c6f43eafcf"
+ "AUSTRALIAEAST:20180607T133747Z:d79324aa-3c3b-430a-ba10-5e1a6ee09f68"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:48 GMT"
+ "Thu, 07 Jun 2018 13:37:46 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d66a3758-4cb7-43a9-a1b9-cb1307a7360e"
+ "3849636a-b6ad-4518-b5be-ac72c230e76b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9195' under resource group 'ps6602' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps7496' under resource group 'ps3053' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -301,43 +325,46 @@
"gateway"
],
"x-ms-request-id": [
- "6417fd50-47c6-437c-a9bf-40c6fec24e9e"
+ "87e04c6a-49c3-4244-8504-e3225decb633"
],
"x-ms-correlation-request-id": [
- "6417fd50-47c6-437c-a9bf-40c6fec24e9e"
+ "87e04c6a-49c3-4244-8504-e3225decb633"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031049Z:6417fd50-47c6-437c-a9bf-40c6fec24e9e"
+ "AUSTRALIAEAST:20180607T133747Z:87e04c6a-49c3-4244-8504-e3225decb633"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:48 GMT"
+ "Thu, 07 Jun 2018 13:37:46 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps711\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps711\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9195.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7bd8f728-3845-4d18-96f5-bc8fbacbe38f\",\r\n \"creationTime\": \"2017-12-07T03:10:53.0722432Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:10:53.0722432Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195\",\r\n \"name\": \"ps9195\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps465\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps465\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7496.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5f827586-5826-4caf-9d7b-08df6575ee6c\",\r\n \"creationTime\": \"2018-06-07T13:37:54.8820267Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:37:54.8820267Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496\",\r\n \"name\": \"ps7496\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -349,31 +376,28 @@
"no-cache"
],
"x-ms-request-id": [
- "721e8816-d719-46ea-8e3d-550bc0ad397d"
+ "8ec8f35c-2e7a-4050-8e4d-2b586cfc6359"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14989"
],
"x-ms-correlation-request-id": [
- "08e09091-a13a-457f-a996-273a44fa5453"
+ "c62a6018-57e6-4b18-b311-efdeb6bbff16"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031123Z:08e09091-a13a-457f-a996-273a44fa5453"
+ "AUSTRALIAEAST:20180607T133828Z:c62a6018-57e6-4b18-b311-efdeb6bbff16"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:22 GMT"
+ "Thu, 07 Jun 2018 13:38:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -388,28 +412,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fd2c481-b4a7-48cb-8444-cedd2f8fd8f8"
+ "03c5aa03-0968-429d-bf59-3513868d25a1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps711\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps711\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9195.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7bd8f728-3845-4d18-96f5-bc8fbacbe38f\",\r\n \"creationTime\": \"2017-12-07T03:10:53.0722432Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:10:53.0722432Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195\",\r\n \"name\": \"ps9195\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps465\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps465\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7496.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5f827586-5826-4caf-9d7b-08df6575ee6c\",\r\n \"creationTime\": \"2018-06-07T13:37:54.8820267Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:37:54.8820267Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496\",\r\n \"name\": \"ps7496\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -421,31 +445,28 @@
"no-cache"
],
"x-ms-request-id": [
- "85dae18a-0cb3-4a86-b2b2-07b0dec00283"
+ "bdce7f4f-dbdd-4fcf-9524-fbd91ffaf59c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14988"
],
"x-ms-correlation-request-id": [
- "add00b54-8311-4722-9233-c23fd9c32333"
+ "baf30897-f236-400a-9cc8-a157a74c459e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031124Z:add00b54-8311-4722-9233-c23fd9c32333"
+ "AUSTRALIAEAST:20180607T133829Z:baf30897-f236-400a-9cc8-a157a74c459e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:23 GMT"
+ "Thu, 07 Jun 2018 13:38:29 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -460,28 +481,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0479774c-fc07-49db-ae07-6a69c6051b48"
+ "d8ea87de-281a-45a5-a5bd-4cd0c0586b5f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps711\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps711\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9195.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7bd8f728-3845-4d18-96f5-bc8fbacbe38f\",\r\n \"creationTime\": \"2017-12-07T03:10:53.0722432Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:10:53.0722432Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195\",\r\n \"name\": \"ps9195\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps465\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps465\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7496.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5f827586-5826-4caf-9d7b-08df6575ee6c\",\r\n \"creationTime\": \"2018-06-07T13:37:54.8820267Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:37:54.8820267Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496\",\r\n \"name\": \"ps7496\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -493,31 +514,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0eb08913-04e6-41cb-8c51-b436691a7142"
+ "24dde2d4-9465-4b57-82fc-00efdc00f0fc"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14987"
],
"x-ms-correlation-request-id": [
- "34cfaa34-37dd-40cc-8ab6-6aec1d996142"
+ "dbe50e86-0b05-4854-95cc-4ba79fad9139"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031125Z:34cfaa34-37dd-40cc-8ab6-6aec1d996142"
+ "AUSTRALIAEAST:20180607T133831Z:dbe50e86-0b05-4854-95cc-4ba79fad9139"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:24 GMT"
+ "Thu, 07 Jun 2018 13:38:30 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -532,28 +550,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "feb07da1-10bb-4240-be9b-da841b6cc3d9"
+ "07ad0cf7-fb29-494a-bd9c-9ed95125044c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps711\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps711\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [\r\n {\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"name\": \"ps4542\"\r\n }\r\n ],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9195.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7bd8f728-3845-4d18-96f5-bc8fbacbe38f\",\r\n \"creationTime\": \"2017-12-07T03:10:53.0722432Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:10:53.0722432Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195\",\r\n \"name\": \"ps9195\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps465\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps465\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [\r\n {\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"name\": \"ps2112\"\r\n }\r\n ],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7496.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5f827586-5826-4caf-9d7b-08df6575ee6c\",\r\n \"creationTime\": \"2018-06-07T13:37:54.8820267Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:37:54.8820267Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496\",\r\n \"name\": \"ps7496\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1372"
+ "1393"
],
"Content-Type": [
"application/json"
@@ -565,31 +583,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c4db0e64-ee31-4ccf-85cc-c52ecb0ef0e6"
+ "0e2735b7-3bc6-4d83-868a-4b7c8a7dd290"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14980"
],
"x-ms-correlation-request-id": [
- "82a5c8ac-136d-4a26-825e-409b6a16e06e"
+ "3b92c1a8-c70a-4599-ba09-6b52f2b2709f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031137Z:82a5c8ac-136d-4a26-825e-409b6a16e06e"
+ "AUSTRALIAEAST:20180607T133854Z:3b92c1a8-c70a-4599-ba09-6b52f2b2709f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:37 GMT"
+ "Thu, 07 Jun 2018 13:38:53 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -610,25 +625,25 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9546a59e-45b5-48f3-b087-745dc0745883"
+ "3bc2417a-4aec-41a5-8e5c-8c6b1e1aa824"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "528"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -636,41 +651,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "f8d3e91e-84ac-462c-ad7e-5b4f046dea83"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "9e524d2b-d47c-4d0d-8642-981d845d8d8e"
],
"x-ms-correlation-request-id": [
- "826c95a8-6ebd-42b8-8a1a-57ac98c7f74c"
+ "9e524d2b-d47c-4d0d-8642-981d845d8d8e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031009Z:826c95a8-6ebd-42b8-8a1a-57ac98c7f74c"
+ "AUSTRALIAEAST:20180607T133701Z:9e524d2b-d47c-4d0d-8642-981d845d8d8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:08 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 13:37:00 GMT"
]
},
"StatusCode": 200
@@ -682,22 +685,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e02ff023-96ec-4802-8908-8bfca374c272"
+ "735cab84-fcd5-4bd1-a72a-6fa7f3aed471"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9195.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7bd8f728-3845-4d18-96f5-bc8fbacbe38f\",\r\n \"creationTime\": \"2017-12-07T03:10:53.0722432Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:10:53.0722432Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195\",\r\n \"name\": \"ps9195\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7496.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5f827586-5826-4caf-9d7b-08df6575ee6c\",\r\n \"creationTime\": \"2018-06-07T13:37:54.8820267Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:37:54.8820267Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496\",\r\n \"name\": \"ps7496\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "499"
],
"Content-Type": [
"application/json"
@@ -709,31 +712,28 @@
"no-cache"
],
"x-ms-request-id": [
- "01aa87a1-13f4-474f-83da-afaff73ab1e4"
+ "d57d562d-8b31-4a12-acb1-71d6e6ed5b4b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14983"
],
"x-ms-correlation-request-id": [
- "06c08faf-2570-4775-bf01-521e3dd11377"
+ "acf6620c-c944-48b5-a7d5-90ce719119f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031134Z:06c08faf-2570-4775-bf01-521e3dd11377"
+ "AUSTRALIAEAST:20180607T133848Z:acf6620c-c944-48b5-a7d5-90ce719119f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:33 GMT"
+ "Thu, 07 Jun 2018 13:38:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -754,22 +754,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08903e8d-6c7e-4c20-8b7a-3fbc17a063f9"
+ "e6c15a68-7104-4132-a1d1-6472d5ccf289"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9195.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7bd8f728-3845-4d18-96f5-bc8fbacbe38f\",\r\n \"creationTime\": \"2017-12-07T03:10:53.0722432Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:10:53.0722432Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195\",\r\n \"name\": \"ps9195\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7496.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5f827586-5826-4caf-9d7b-08df6575ee6c\",\r\n \"creationTime\": \"2018-06-07T13:37:54.8820267Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:37:54.8820267Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496\",\r\n \"name\": \"ps7496\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "499"
],
"Content-Type": [
"application/json"
@@ -781,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8c6ffbf8-2743-4108-8867-351aad16aa79"
+ "87b03f6b-12c1-4bfe-a70d-3ee48991942b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14982"
],
"x-ms-correlation-request-id": [
- "41869f90-6be7-4cb6-a2a0-c60fa47ee555"
+ "c69e675d-c2bf-4676-940d-6b1a1edf3cd2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031136Z:41869f90-6be7-4cb6-a2a0-c60fa47ee555"
+ "AUSTRALIAEAST:20180607T133851Z:c69e675d-c2bf-4676-940d-6b1a1edf3cd2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:35 GMT"
+ "Thu, 07 Jun 2018 13:38:51 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -820,25 +817,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NjU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5993be94-0cf2-4763-bde2-de9f73957c64"
+ "34016674-8876-4dcf-8dc8-3a50bcf7560b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps711' under resource group 'ps6602' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps465' under resource group 'ps3053' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"148"
@@ -856,43 +853,46 @@
"gateway"
],
"x-ms-request-id": [
- "cbca991f-40e8-4277-bb21-073c973a11f9"
+ "1c3ecc30-7709-4b73-8c12-40783ff64fe0"
],
"x-ms-correlation-request-id": [
- "cbca991f-40e8-4277-bb21-073c973a11f9"
+ "1c3ecc30-7709-4b73-8c12-40783ff64fe0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031010Z:cbca991f-40e8-4277-bb21-073c973a11f9"
+ "AUSTRALIAEAST:20180607T133702Z:1c3ecc30-7709-4b73-8c12-40783ff64fe0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:12 GMT"
+ "Thu, 07 Jun 2018 13:37:01 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NjU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps711.azuredatalakestore.net\",\r\n \"accountId\": \"e7dca7e2-9148-4f12-b776-30a0fa29e49c\",\r\n \"creationTime\": \"2017-12-07T03:10:18.5894365Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:10:18.5894365Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"7b603d65-a782-49da-b6ab-66efbe20cd05\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711\",\r\n \"name\": \"ps711\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps465.azuredatalakestore.net\",\r\n \"accountId\": \"9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d\",\r\n \"creationTime\": \"2018-06-07T13:37:12.1676585Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:37:12.1676585Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fced5707-6aed-4ee3-b942-12da907fdd55\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465\",\r\n \"name\": \"ps465\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "905"
+ "989"
],
"Content-Type": [
"application/json"
@@ -904,31 +904,28 @@
"no-cache"
],
"x-ms-request-id": [
- "cf914aa1-0a0b-490a-947d-701c47677a0b"
+ "45499444-bf0d-42da-a0f1-4522320da493"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14980"
],
"x-ms-correlation-request-id": [
- "649a65cc-0da3-4a73-8b63-f9bfbee9ac38"
+ "edfa541e-02d1-44e5-8816-bbec3f07d268"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031048Z:649a65cc-0da3-4a73-8b63-f9bfbee9ac38"
+ "AUSTRALIAEAST:20180607T133746Z:edfa541e-02d1-44e5-8816-bbec3f07d268"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:47 GMT"
+ "Thu, 07 Jun 2018 13:37:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -943,28 +940,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NjU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba593900-f2e3-42c8-8350-75f448ab024d"
+ "3e46f646-a731-4866-829d-4e732487a893"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps711.azuredatalakestore.net\",\r\n \"accountId\": \"e7dca7e2-9148-4f12-b776-30a0fa29e49c\",\r\n \"creationTime\": \"2017-12-07T03:10:18.5894365Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:10:18.5894365Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"7b603d65-a782-49da-b6ab-66efbe20cd05\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711\",\r\n \"name\": \"ps711\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps465.azuredatalakestore.net\",\r\n \"accountId\": \"9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d\",\r\n \"creationTime\": \"2018-06-07T13:37:12.1676585Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:37:12.1676585Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fced5707-6aed-4ee3-b942-12da907fdd55\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465\",\r\n \"name\": \"ps465\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "905"
+ "989"
],
"Content-Type": [
"application/json"
@@ -976,31 +973,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9de89a3a-46be-48f9-bb62-b235ded2c5bd"
+ "2bee8b73-1694-4798-bc41-ad3bd74855f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14979"
],
"x-ms-correlation-request-id": [
- "a9c9b0f0-5300-4f07-b64c-23cae308b9e6"
+ "2689a397-03be-47ad-ae42-bb8fb6286ac5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031141Z:a9c9b0f0-5300-4f07-b64c-23cae308b9e6"
+ "AUSTRALIAEAST:20180607T133901Z:2689a397-03be-47ad-ae42-bb8fb6286ac5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:41 GMT"
+ "Thu, 07 Jun 2018 13:39:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1015,34 +1009,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NjU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "b4737fa5-df90-4747-8372-eb3a61a9133b"
+ "88aa18b9-361c-4351-928c-1b3afbd3666f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e7dca7e2-9148-4f12-b776-30a0fa29e49c\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711\",\r\n \"name\": \"ps711\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465\",\r\n \"name\": \"ps465\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "560"
+ "558"
],
"Content-Type": [
"application/json"
@@ -1057,37 +1051,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e7dca7e2-9148-4f12-b776-30a0fa29e49c0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "68324bc8-5459-4c8a-9b87-52fe21b726c4"
+ "c2d90080-bbf9-4292-8480-476573f3c1ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1196"
],
"x-ms-correlation-request-id": [
- "19724b60-7106-4164-95f2-ab8a13faaab8"
+ "3a8c5d39-e8a5-45ec-8127-9e594c70db09"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031016Z:19724b60-7106-4164-95f2-ab8a13faaab8"
+ "AUSTRALIAEAST:20180607T133710Z:3a8c5d39-e8a5-45ec-8127-9e594c70db09"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:16 GMT"
+ "Thu, 07 Jun 2018 13:37:09 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1102,13 +1093,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e7dca7e2-9148-4f12-b776-30a0fa29e49c0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U3ZGNhN2UyLTkxNDgtNGYxMi1iNzc2LTMwYTBmYTI5ZTQ5YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzlkNzZkYWU1LTJiN2YtNDQ5MS1hYjI1LWZiNDBmNWJmMWU5ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1129,31 +1120,28 @@
"no-cache"
],
"x-ms-request-id": [
- "68d45b78-385e-4fcc-96b2-9277d9fa464c"
+ "24d7207a-97de-499b-a549-a3278b9d2ff8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14983"
],
"x-ms-correlation-request-id": [
- "ac8041cc-41c2-4153-bd51-83397759d59f"
+ "ca191af6-b70d-435d-be6a-391b3dcfad26"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031026Z:ac8041cc-41c2-4153-bd51-83397759d59f"
+ "AUSTRALIAEAST:20180607T133721Z:ca191af6-b70d-435d-be6a-391b3dcfad26"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:26 GMT"
+ "Thu, 07 Jun 2018 13:37:21 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1168,13 +1156,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e7dca7e2-9148-4f12-b776-30a0fa29e49c0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U3ZGNhN2UyLTkxNDgtNGYxMi1iNzc2LTMwYTBmYTI5ZTQ5YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzlkNzZkYWU1LTJiN2YtNDQ5MS1hYjI1LWZiNDBmNWJmMWU5ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1195,31 +1183,28 @@
"no-cache"
],
"x-ms-request-id": [
- "03962315-f70f-4397-a8ad-955a3652276e"
+ "d276186e-b547-4716-b6b2-6e5d21e4100a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14982"
],
"x-ms-correlation-request-id": [
- "bd1e44cd-34e6-46e0-8364-b8af5ca99595"
+ "01e71aca-7cf2-43c8-ad1a-cd3ec96fcd67"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031037Z:bd1e44cd-34e6-46e0-8364-b8af5ca99595"
+ "AUSTRALIAEAST:20180607T133733Z:01e71aca-7cf2-43c8-ad1a-cd3ec96fcd67"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:36 GMT"
+ "Thu, 07 Jun 2018 13:37:33 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1234,13 +1219,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e7dca7e2-9148-4f12-b776-30a0fa29e49c0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U3ZGNhN2UyLTkxNDgtNGYxMi1iNzc2LTMwYTBmYTI5ZTQ5YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzlkNzZkYWU1LTJiN2YtNDQ5MS1hYjI1LWZiNDBmNWJmMWU5ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1261,31 +1246,28 @@
"no-cache"
],
"x-ms-request-id": [
- "28fbd67a-810d-43c6-a355-d5786b358230"
+ "972f1d44-f645-49a6-8858-9723dcc270c6"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14981"
],
"x-ms-correlation-request-id": [
- "208f7869-829b-454e-b5b1-c7d0f7ba5b6e"
+ "39bcc528-ba44-4ccb-b2cf-47e81879f0b8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031047Z:208f7869-829b-454e-b5b1-c7d0f7ba5b6e"
+ "AUSTRALIAEAST:20180607T133744Z:39bcc528-ba44-4ccb-b2cf-47e81879f0b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:47 GMT"
+ "Thu, 07 Jun 2018 13:37:44 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1300,34 +1282,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps711\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps711\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps465\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps465\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "198"
+ "196"
],
"x-ms-client-request-id": [
- "a4679e5c-efd0-4774-8c7c-5425d2417875"
+ "c53039e5-9667-4987-8378-81f27dcc950e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps711\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps711\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7bd8f728-3845-4d18-96f5-bc8fbacbe38f\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195\",\r\n \"name\": \"ps9195\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps465\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps465\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5f827586-5826-4caf-9d7b-08df6575ee6c\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496\",\r\n \"name\": \"ps7496\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "487"
+ "485"
],
"Content-Type": [
"application/json"
@@ -1342,37 +1324,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7bd8f728-3845-4d18-96f5-bc8fbacbe38f0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5f827586-5826-4caf-9d7b-08df6575ee6c0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "a0aefbdf-fa73-49ae-a507-c41070384c82"
+ "8ef78427-2e21-4535-949a-01214c565b1c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "ae48b768-759d-4a99-9b34-e5d21a3bbb48"
+ "f914b42e-e8dc-4706-bc03-e0970f740f6f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031051Z:ae48b768-759d-4a99-9b34-e5d21a3bbb48"
+ "AUSTRALIAEAST:20180607T133752Z:f914b42e-e8dc-4706-bc03-e0970f740f6f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:10:50 GMT"
+ "Thu, 07 Jun 2018 13:37:51 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1387,16 +1366,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7bd8f728-3845-4d18-96f5-bc8fbacbe38f0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83YmQ4ZjcyOC0zODQ1LTRkMTgtOTZmNS1iYzhmYmFjYmUzOGYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5f827586-5826-4caf-9d7b-08df6575ee6c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81ZjgyNzU4Ni01ODI2LTRjYWYtOWQ3Yi0wOGRmNjU3NWVlNmMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1414,31 +1393,28 @@
"no-cache"
],
"x-ms-request-id": [
- "419be8b9-1bdc-4559-9319-0d68d1690479"
+ "ff36a3db-8123-45c3-90c0-58bbf6685991"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14992"
],
"x-ms-correlation-request-id": [
- "1abebe7d-23b0-4b42-8846-06f6e2a76b09"
+ "19d7a487-0336-4601-8567-8b140e591094"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031101Z:1abebe7d-23b0-4b42-8846-06f6e2a76b09"
+ "AUSTRALIAEAST:20180607T133804Z:19d7a487-0336-4601-8567-8b140e591094"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:01 GMT"
+ "Thu, 07 Jun 2018 13:38:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1453,16 +1429,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7bd8f728-3845-4d18-96f5-bc8fbacbe38f0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83YmQ4ZjcyOC0zODQ1LTRkMTgtOTZmNS1iYzhmYmFjYmUzOGYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5f827586-5826-4caf-9d7b-08df6575ee6c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81ZjgyNzU4Ni01ODI2LTRjYWYtOWQ3Yi0wOGRmNjU3NWVlNmMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1480,31 +1456,28 @@
"no-cache"
],
"x-ms-request-id": [
- "206cbafd-ad04-4318-93d1-130271960e5f"
+ "e89c3bd0-e670-451f-a9af-12303c05a249"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14991"
],
"x-ms-correlation-request-id": [
- "de93d461-9f3a-437e-a87a-76d68fdcf66e"
+ "c2183e88-abcd-48c2-aa91-3d89658fe483"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031112Z:de93d461-9f3a-437e-a87a-76d68fdcf66e"
+ "AUSTRALIAEAST:20180607T133815Z:c2183e88-abcd-48c2-aa91-3d89658fe483"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:11 GMT"
+ "Thu, 07 Jun 2018 13:38:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1519,16 +1492,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7bd8f728-3845-4d18-96f5-bc8fbacbe38f0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83YmQ4ZjcyOC0zODQ1LTRkMTgtOTZmNS1iYzhmYmFjYmUzOGYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5f827586-5826-4caf-9d7b-08df6575ee6c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81ZjgyNzU4Ni01ODI2LTRjYWYtOWQ3Yi0wOGRmNjU3NWVlNmMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1546,31 +1519,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2d96e69c-dc53-4292-9cfc-f185b59c0880"
+ "717a0871-5585-48f4-8c15-491c28f928e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14990"
],
"x-ms-correlation-request-id": [
- "53502231-e488-487f-85d6-891768bf0c2e"
+ "16e39732-0f9e-4f72-881c-746d6391c610"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031123Z:53502231-e488-487f-85d6-891768bf0c2e"
+ "AUSTRALIAEAST:20180607T133826Z:16e39732-0f9e-4f72-881c-746d6391c610"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:22 GMT"
+ "Thu, 07 Jun 2018 13:38:26 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1585,8 +1555,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NS9jb21wdXRlUG9saWNpZXMvcHMxOTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Ni9jb21wdXRlUG9saWNpZXMvcHM3ODA4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n }\r\n}",
"RequestHeaders": {
@@ -1597,19 +1567,19 @@
"151"
],
"x-ms-client-request-id": [
- "047e4e24-7977-4bb2-bd6b-89405d214f3c"
+ "e6cc590b-cd41-4366-9640-f680faf10aa1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940\",\r\n \"name\": \"ps1940\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808\",\r\n \"name\": \"ps7808\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"355"
@@ -1624,31 +1594,28 @@
"no-cache"
],
"x-ms-request-id": [
- "af589f64-6a18-41f7-aef9-59a178e2363c"
+ "7026b779-b553-4f15-acd2-45578b10a69b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "d55ca3f0-85d4-4bf4-8c41-7a752269dd89"
+ "2d30dce5-dda9-4808-b892-41cd596a0449"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031128Z:d55ca3f0-85d4-4bf4-8c41-7a752269dd89"
+ "AUSTRALIAEAST:20180607T133835Z:2d30dce5-dda9-4808-b892-41cd596a0449"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:28 GMT"
+ "Thu, 07 Jun 2018 13:38:34 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1663,8 +1630,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps4542?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NS9jb21wdXRlUG9saWNpZXMvcHM0NTQyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps2112?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Ni9jb21wdXRlUG9saWNpZXMvcHMyMTEyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n }\r\n}",
"RequestHeaders": {
@@ -1675,19 +1642,19 @@
"181"
],
"x-ms-client-request-id": [
- "b56fa531-160e-4b38-8f0d-b7c740ac1b1a"
+ "af1a91bb-901d-4271-89af-03bb21831ab3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps4542\",\r\n \"name\": \"ps4542\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps2112\",\r\n \"name\": \"ps2112\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"378"
@@ -1702,31 +1669,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b4fcc347-3b53-4c27-8839-4705a563a4fd"
+ "b1dc2570-bc50-4908-bbf2-b9f737dcb34b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "35527867-7ccd-4d3b-9329-3b3141b23b5f"
+ "fc294d1f-50db-4a0e-b734-3a9810d09af8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031129Z:35527867-7ccd-4d3b-9329-3b3141b23b5f"
+ "AUSTRALIAEAST:20180607T133840Z:fc294d1f-50db-4a0e-b734-3a9810d09af8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:29 GMT"
+ "Thu, 07 Jun 2018 13:38:40 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1741,25 +1705,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NS9jb21wdXRlUG9saWNpZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Ni9jb21wdXRlUG9saWNpZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b278eb5-4a5a-4582-a5c5-62628d6cd6ed"
+ "04df8d6a-d746-4952-8e28-1ce6ebb2848a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940\",\r\n \"name\": \"ps1940\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n },\r\n {\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps4542\",\r\n \"name\": \"ps4542\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps2112\",\r\n \"name\": \"ps2112\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n },\r\n {\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808\",\r\n \"name\": \"ps7808\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"746"
@@ -1774,7 +1738,7 @@
"no-cache"
],
"x-ms-request-id": [
- "907be601-34c6-41a5-b59c-a3a6e81b030b"
+ "c74e237b-9fd9-4ac9-a6bd-ffab26078e68"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1783,22 +1747,19 @@
"14986"
],
"x-ms-correlation-request-id": [
- "1b25d8b1-0e5e-4a5f-8913-fcea30866c89"
+ "33be53c0-b3eb-4987-8009-8af59bcdfc0d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031130Z:1b25d8b1-0e5e-4a5f-8913-fcea30866c89"
+ "AUSTRALIAEAST:20180607T133842Z:33be53c0-b3eb-4987-8009-8af59bcdfc0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:30 GMT"
+ "Thu, 07 Jun 2018 13:38:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1813,25 +1774,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NS9jb21wdXRlUG9saWNpZXMvcHMxOTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Ni9jb21wdXRlUG9saWNpZXMvcHM3ODA4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb6686de-37ce-4564-835a-29641a843719"
+ "f24fac51-e9f0-43b5-9217-0eb4a9de96b9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940\",\r\n \"name\": \"ps1940\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808\",\r\n \"name\": \"ps7808\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"355"
@@ -1846,31 +1807,28 @@
"no-cache"
],
"x-ms-request-id": [
- "aa740174-2d5e-495b-b244-2a0b121995a5"
+ "752caf41-ae2c-468c-a822-f4fa28813933"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14985"
],
"x-ms-correlation-request-id": [
- "aa7382ee-d580-4743-8adf-e818944f1873"
+ "1ba741f7-a4ab-4856-8639-d60f06a26b5d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031131Z:aa7382ee-d580-4743-8adf-e818944f1873"
+ "AUSTRALIAEAST:20180607T133843Z:1ba741f7-a4ab-4856-8639-d60f06a26b5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:30 GMT"
+ "Thu, 07 Jun 2018 13:38:43 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1885,25 +1843,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NS9jb21wdXRlUG9saWNpZXMvcHMxOTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Ni9jb21wdXRlUG9saWNpZXMvcHM3ODA4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd19fdba-8124-4d08-b5a7-6a376fdd4f9f"
+ "8a05e135-caf6-436d-ae2b-386b64091909"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940\",\r\n \"name\": \"ps1940\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808\",\r\n \"name\": \"ps7808\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"377"
@@ -1918,31 +1876,28 @@
"no-cache"
],
"x-ms-request-id": [
- "52ccb630-b2bd-41ca-9b94-8501ee9a62fe"
+ "9fb39ed9-10ef-4ef3-b215-1cdaefd3e61c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14984"
],
"x-ms-correlation-request-id": [
- "a537790a-c719-4f2d-9cc6-9473cfc8c4eb"
+ "6c6a5f58-a4bc-4b76-b45e-f99353c7c5ad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031133Z:a537790a-c719-4f2d-9cc6-9473cfc8c4eb"
+ "AUSTRALIAEAST:20180607T133847Z:6c6a5f58-a4bc-4b76-b45e-f99353c7c5ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:32 GMT"
+ "Thu, 07 Jun 2018 13:38:47 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1957,22 +1912,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NS9jb21wdXRlUG9saWNpZXMvcHMxOTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Ni9jb21wdXRlUG9saWNpZXMvcHM3ODA4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d48fabfc-5785-459a-b804-5d5f4f70c038"
+ "bd86222d-21bf-4e62-8f4d-33af0c0074ec"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}",
@@ -1990,31 +1945,28 @@
"no-cache"
],
"x-ms-request-id": [
- "69d41477-e283-4069-8b91-f51b02fc7bcb"
+ "d496eb66-fd65-431c-ab8f-0dd01a9b20c6"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14981"
],
"x-ms-correlation-request-id": [
- "2d0a3f79-eb69-4825-9305-bd3e09cd021d"
+ "14b96f9e-eaa6-4100-9d25-2186578093a9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031136Z:2d0a3f79-eb69-4825-9305-bd3e09cd021d"
+ "AUSTRALIAEAST:20180607T133853Z:14b96f9e-eaa6-4100-9d25-2186578093a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:35 GMT"
+ "Thu, 07 Jun 2018 13:38:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2029,8 +1981,8 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NS9jb21wdXRlUG9saWNpZXMvcHMxOTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Ni9jb21wdXRlUG9saWNpZXMvcHM3ODA4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"minPriorityPerJob\": 2\r\n }\r\n}",
"RequestHeaders": {
@@ -2041,19 +1993,19 @@
"56"
],
"x-ms-client-request-id": [
- "cf5b04d5-c94e-4566-bf4d-58f9bcc2432b"
+ "41079143-eaf4-4934-a65a-611996236efa"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940\",\r\n \"name\": \"ps1940\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808\",\r\n \"name\": \"ps7808\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"377"
@@ -2068,31 +2020,28 @@
"no-cache"
],
"x-ms-request-id": [
- "585df9af-e1bb-4999-94c0-1c2366ec7d8e"
+ "409e2736-9f1c-4424-94cb-b90331e84783"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1194"
],
"x-ms-correlation-request-id": [
- "7bcd6f16-7d85-4154-ad67-6e6237bb9a41"
+ "2ab4642b-5139-4cfb-9721-e56f2cc54bc4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031133Z:7bcd6f16-7d85-4154-ad67-6e6237bb9a41"
+ "AUSTRALIAEAST:20180607T133845Z:2ab4642b-5139-4cfb-9721-e56f2cc54bc4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:32 GMT"
+ "Thu, 07 Jun 2018 13:38:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2107,22 +2056,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195/computePolicies/ps1940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NS9jb21wdXRlUG9saWNpZXMvcHMxOTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496/computePolicies/ps7808?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Ni9jb21wdXRlUG9saWNpZXMvcHM3ODA4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b906e114-9cd2-41ef-81ce-a75e30790c9d"
+ "99afe23d-d966-4012-ac01-054c44e362f5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2137,28 +2086,28 @@
"no-cache"
],
"x-ms-request-id": [
- "55264641-04cd-45dc-87ae-267c63d9562a"
+ "86c2cc3b-4ec7-4833-a728-2c6a19a02e0b"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "adb0662e-11fa-44bd-94a2-32cb8500b6e0"
+ "8d17a3ed-f798-453a-896f-94b1b0c8fa5b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031135Z:adb0662e-11fa-44bd-94a2-32cb8500b6e0"
+ "AUSTRALIAEAST:20180607T133850Z:8d17a3ed-f798-453a-896f-94b1b0c8fa5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:34 GMT"
+ "Thu, 07 Jun 2018 13:38:49 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2173,22 +2122,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeAnalytics/accounts/ps9195?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeAnalytics/accounts/ps7496?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNzQ5Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69910c79-b24d-4b4b-8392-5d9c5ab6b5cf"
+ "283884e5-1858-42c6-9ce4-8d936e9e7ca1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2203,28 +2152,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fcbe6a49-1ace-4cc5-9399-6d4404b1fb4f"
+ "370aec4f-26e8-4e7c-96ef-f7142c4a4f65"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "e1109904-b341-47b2-8839-df4facd7d44f"
+ "efa4c7af-6ba4-4077-b975-63e17a7b27ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031140Z:e1109904-b341-47b2-8839-df4facd7d44f"
+ "AUSTRALIAEAST:20180607T133900Z:efa4c7af-6ba4-4077-b975-63e17a7b27ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:40 GMT"
+ "Thu, 07 Jun 2018 13:39:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2239,19 +2188,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6602/providers/Microsoft.DataLakeStore/accounts/ps711?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NjU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "508030da-e9ef-4bf4-a0b1-3635648dfa80"
+ "b4171b23-5f1f-4fbe-a401-dc0fb2dda7ab"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -2268,29 +2217,101 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d1?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "006fb4a0-3a32-4651-be64-c37466230188"
+ "375d7680-936f-4dd4-908f-f85e305fff93"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "aaeb6737-a29d-4f9e-ab4a-560263f51164"
+ "a40ebe98-a664-424a-b939-e5fee4a0855c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031145Z:aaeb6737-a29d-4f9e-ab4a-560263f51164"
+ "AUSTRALIAEAST:20180607T133905Z:a40ebe98-a664-424a-b939-e5fee4a0855c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:45 GMT"
+ "Thu, 07 Jun 2018 13:39:05 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465/operationresults/1?api-version=2016-11-01"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9d76dae5-2b7f-4491-ab25-fb40f5bf1e9d1?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzlkNzZkYWU1LTJiN2YtNDQ5MS1hYjI1LWZiNDBmNWJmMWU5ZDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cf3f7e66-3a22-4d3d-90e9-87e22cdc95bf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-correlation-request-id": [
+ "60aecbd2-2003-41a6-ae9f-70c512452607"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T133917Z:60aecbd2-2003-41a6-ae9f-70c512452607"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 13:39:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2305,13 +2326,82 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6602?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjYwMj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3053/providers/Microsoft.DataLakeStore/accounts/ps465/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzA1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM0NjUvb3BlcmF0aW9ucmVzdWx0cy8xP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7055f8fc-d342-4117-b4ef-f8c92c65cbc2"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6b55d5a-7ea0-4d1f-8df3-3bf6eb9940d5"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T133918Z:f6b55d5a-7ea0-4d1f-8df3-3bf6eb9940d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 13:39:18 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3053?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzA1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d2f43f46-7691-49a6-99b3-448a87dd3ab0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2328,44 +2418,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-request-id": [
- "0c3a08d1-678b-4b1c-a235-105074284f97"
+ "63a557f9-8044-4b22-8519-7231c134bff4"
],
"x-ms-correlation-request-id": [
- "0c3a08d1-678b-4b1c-a235-105074284f97"
+ "63a557f9-8044-4b22-8519-7231c134bff4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031147Z:0c3a08d1-678b-4b1c-a235-105074284f97"
+ "AUSTRALIAEAST:20180607T133922Z:63a557f9-8044-4b22-8519-7231c134bff4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:47 GMT"
+ "Thu, 07 Jun 2018 13:39:22 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNTMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk1ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNTMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05UTXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2383,43 +2476,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14995"
],
"x-ms-request-id": [
- "91c7ee59-68f6-47f8-a437-87d36c35cb90"
+ "dec782b5-2531-4a1b-b0f8-c3534d8d6a5a"
],
"x-ms-correlation-request-id": [
- "91c7ee59-68f6-47f8-a437-87d36c35cb90"
+ "dec782b5-2531-4a1b-b0f8-c3534d8d6a5a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031148Z:91c7ee59-68f6-47f8-a437-87d36c35cb90"
+ "AUSTRALIAEAST:20180607T133938Z:dec782b5-2531-4a1b-b0f8-c3534d8d6a5a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:11:47 GMT"
+ "Thu, 07 Jun 2018 13:39:37 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNTMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk1ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNTMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05UTXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2437,43 +2533,97 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14994"
],
"x-ms-request-id": [
- "da3bff5b-a6fe-4cd4-bb56-3b1b08389d2c"
+ "bbfad3d2-7452-46fe-9083-29d2f6164067"
],
"x-ms-correlation-request-id": [
- "da3bff5b-a6fe-4cd4-bb56-3b1b08389d2c"
+ "bbfad3d2-7452-46fe-9083-29d2f6164067"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031203Z:da3bff5b-a6fe-4cd4-bb56-3b1b08389d2c"
+ "AUSTRALIAEAST:20180607T133953Z:bbfad3d2-7452-46fe-9083-29d2f6164067"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:12:02 GMT"
+ "Thu, 07 Jun 2018 13:39:53 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNTMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY2MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMk1ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNTMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05UTXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "ccbd477c-e6ef-4921-810a-545c4f97171f"
+ ],
+ "x-ms-correlation-request-id": [
+ "ccbd477c-e6ef-4921-810a-545c4f97171f"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T134009Z:ccbd477c-e6ef-4921-810a-545c4f97171f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 13:40:08 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNTMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd05UTXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2488,25 +2638,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14992"
],
"x-ms-request-id": [
- "2905197d-c775-4f06-99f9-46435eed3dec"
+ "0de35b98-84ca-4dca-b730-873885c5efb7"
],
"x-ms-correlation-request-id": [
- "2905197d-c775-4f06-99f9-46435eed3dec"
+ "0de35b98-84ca-4dca-b730-873885c5efb7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031218Z:2905197d-c775-4f06-99f9-46435eed3dec"
+ "AUSTRALIAEAST:20180607T134009Z:0de35b98-84ca-4dca-b730-873885c5efb7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:12:18 GMT"
+ "Thu, 07 Jun 2018 13:40:08 GMT"
]
},
"StatusCode": 200
@@ -2514,13 +2667,13 @@
],
"Names": {
"": [
- "ps6602",
- "ps9195",
- "ps711"
+ "ps3053",
+ "ps7496",
+ "ps465"
],
"Test-DataLakeAnalyticsComputePolicy": [
- "ps1940",
- "ps4542"
+ "ps7808",
+ "ps2112"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaFirewallRules.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaFirewallRules.json
index 39063738e344..caf98e779791 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaFirewallRules.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaFirewallRules.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-request-id": [
- "9e7ba5f8-99e7-4584-949b-184611622179"
+ "2542ea77-3b8f-4be0-b1e9-c0dbebd48577"
],
"x-ms-correlation-request-id": [
- "9e7ba5f8-99e7-4584-949b-184611622179"
+ "2542ea77-3b8f-4be0-b1e9-c0dbebd48577"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030618Z:9e7ba5f8-99e7-4584-949b-184611622179"
+ "AUSTRALIAEAST:20180607T133229Z:2542ea77-3b8f-4be0-b1e9-c0dbebd48577"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:17 GMT"
+ "Thu, 07 Jun 2018 13:32:29 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14996"
],
"x-ms-request-id": [
- "22861d7c-462f-4618-8baf-03450d017447"
+ "d270c5a7-7820-4cef-900d-965459151b45"
],
"x-ms-correlation-request-id": [
- "22861d7c-462f-4618-8baf-03450d017447"
+ "d270c5a7-7820-4cef-900d-965459151b45"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030618Z:22861d7c-462f-4618-8baf-03450d017447"
+ "AUSTRALIAEAST:20180607T133230Z:d270c5a7-7820-4cef-900d-965459151b45"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:17 GMT"
+ "Thu, 07 Jun 2018 13:32:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2205?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMjIwNT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5601?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTYwMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "df1decb3-88ed-4dbe-8beb-5a493639296a"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205\",\r\n \"name\": \"ps2205\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601\",\r\n \"name\": \"ps5601\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,49 +142,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-request-id": [
- "d4e674b6-13b3-4727-a0ba-96c0fc81319e"
+ "14e70e3c-dcd9-4e80-a9a8-c90c53c226bb"
],
"x-ms-correlation-request-id": [
- "d4e674b6-13b3-4727-a0ba-96c0fc81319e"
+ "14e70e3c-dcd9-4e80-a9a8-c90c53c226bb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030624Z:d4e674b6-13b3-4727-a0ba-96c0fc81319e"
+ "AUSTRALIAEAST:20180607T133239Z:14e70e3c-dcd9-4e80-a9a8-c90c53c226bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:24 GMT"
+ "Thu, 07 Jun 2018 13:32:39 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa098012-518c-44d5-8b4f-792682e67689"
+ "c6eefea1-c5be-4a70-a53b-02eda640dd35"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1920' under resource group 'ps2205' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5326' under resource group 'ps5601' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -187,46 +205,49 @@
"gateway"
],
"x-ms-request-id": [
- "0941a5b7-4406-4fdc-af26-1898bed62293"
+ "0f146e5e-d874-4a63-a222-8ca76d5a251f"
],
"x-ms-correlation-request-id": [
- "0941a5b7-4406-4fdc-af26-1898bed62293"
+ "0f146e5e-d874-4a63-a222-8ca76d5a251f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030625Z:0941a5b7-4406-4fdc-af26-1898bed62293"
+ "AUSTRALIAEAST:20180607T133239Z:0f146e5e-d874-4a63-a222-8ca76d5a251f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:25 GMT"
+ "Thu, 07 Jun 2018 13:32:38 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd9c1102-0492-41e0-ae3e-fb7dbec6375b"
+ "d6bb1625-e1db-4be5-a1e2-025284c15ee7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1920' under resource group 'ps2205' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5326' under resource group 'ps5601' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -244,46 +265,49 @@
"gateway"
],
"x-ms-request-id": [
- "237fef63-60b9-4464-a11f-0b381877492d"
+ "081d58f7-34fa-4eac-99d6-45e82adcdd7d"
],
"x-ms-correlation-request-id": [
- "237fef63-60b9-4464-a11f-0b381877492d"
+ "081d58f7-34fa-4eac-99d6-45e82adcdd7d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030704Z:237fef63-60b9-4464-a11f-0b381877492d"
+ "AUSTRALIAEAST:20180607T133325Z:081d58f7-34fa-4eac-99d6-45e82adcdd7d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:04 GMT"
+ "Thu, 07 Jun 2018 13:33:24 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2c95667-2f38-42b8-82b1-53a6a09faad5"
+ "3f97c86d-3478-4ae3-8353-476c4a150704"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1920' under resource group 'ps2205' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5326' under resource group 'ps5601' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -301,43 +325,46 @@
"gateway"
],
"x-ms-request-id": [
- "3cadb690-4664-422b-8460-64f4294dedc5"
+ "9777cb6e-4996-42e3-b60a-eb78dafef4ba"
],
"x-ms-correlation-request-id": [
- "3cadb690-4664-422b-8460-64f4294dedc5"
+ "9777cb6e-4996-42e3-b60a-eb78dafef4ba"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030704Z:3cadb690-4664-422b-8460-64f4294dedc5"
+ "AUSTRALIAEAST:20180607T133325Z:9777cb6e-4996-42e3-b60a-eb78dafef4ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:04 GMT"
+ "Thu, 07 Jun 2018 13:33:25 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:09.0537604Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:33:32.184259Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -349,31 +376,28 @@
"no-cache"
],
"x-ms-request-id": [
- "351dff76-2dba-44b8-9ba1-c85bc36f670c"
+ "aff14da6-a65c-48be-81f5-bb8331cb062b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14977"
],
"x-ms-correlation-request-id": [
- "2ebec5d1-3520-4e5e-ac32-5b9107926d6e"
+ "eb0cfc68-7c92-4dfe-9e25-a3e8cfbb4090"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030739Z:2ebec5d1-3520-4e5e-ac32-5b9107926d6e"
+ "AUSTRALIAEAST:20180607T133405Z:eb0cfc68-7c92-4dfe-9e25-a3e8cfbb4090"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:38 GMT"
+ "Thu, 07 Jun 2018 13:34:04 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -388,28 +412,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad2edc0b-5b53-4b47-8c1d-ca8817637c96"
+ "6da0bba9-4055-40eb-b775-0eb522ca3887"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:09.0537604Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:33:32.184259Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -421,31 +445,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d7086cc6-61ff-4c71-826d-eb723287275b"
+ "cbb52dea-9e39-497e-8322-ce70ed99fc49"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14976"
],
"x-ms-correlation-request-id": [
- "7c5b8ed8-ce89-4f42-a4e0-1e3f92eaf3b6"
+ "d4aaa253-e350-42ab-a264-976cf539c962"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030740Z:7c5b8ed8-ce89-4f42-a4e0-1e3f92eaf3b6"
+ "AUSTRALIAEAST:20180607T133407Z:d4aaa253-e350-42ab-a264-976cf539c962"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:39 GMT"
+ "Thu, 07 Jun 2018 13:34:06 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -460,28 +481,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f52a2af0-5641-4ae6-85dc-7f49bc80bb56"
+ "70114f05-084e-4df4-abcf-47e3b9df294d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:09.0537604Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:33:32.184259Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -493,31 +514,28 @@
"no-cache"
],
"x-ms-request-id": [
- "192263b4-a253-4da5-9fce-0cd04cceaf6d"
+ "eebe13dd-c249-45af-b8f6-571b7fbf1dd2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14975"
],
"x-ms-correlation-request-id": [
- "1a7c8a2e-57de-426b-8972-0ef20c22c739"
+ "f5f7f849-e5a3-4266-99c7-2e45b1334f05"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030741Z:1a7c8a2e-57de-426b-8972-0ef20c22c739"
+ "AUSTRALIAEAST:20180607T133408Z:f5f7f849-e5a3-4266-99c7-2e45b1334f05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:41 GMT"
+ "Thu, 07 Jun 2018 13:34:07 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -532,28 +550,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0c33b3a-942d-4e26-859d-99ccf034a1c6"
+ "3c8b3f41-dafe-479c-b3b5-548b70104355"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:09.0537604Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:33:32.184259Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -565,31 +583,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1c057a02-3f17-4d0d-91de-03be728c994d"
+ "7df66f25-a24a-45a3-9d30-48e9e7dfeac2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14973"
],
"x-ms-correlation-request-id": [
- "2013fd48-c194-46ec-adbe-b5bc37b39cd2"
+ "36bf3b5b-4a11-4ba7-bb68-7073ac191ab2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030742Z:2013fd48-c194-46ec-adbe-b5bc37b39cd2"
+ "AUSTRALIAEAST:20180607T133411Z:36bf3b5b-4a11-4ba7-bb68-7073ac191ab2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:42 GMT"
+ "Thu, 07 Jun 2018 13:34:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -604,28 +619,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bcc7da20-a880-415d-908c-cdeb6dc60c46"
+ "45da53ba-295a-43bf-9a01-377490345373"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:09.0537604Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:33:32.184259Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -637,31 +652,28 @@
"no-cache"
],
"x-ms-request-id": [
- "56b377df-e866-4955-a761-9e7ac3490f37"
+ "749cfaa2-6af1-4155-80dd-febb3c1ebfd5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14972"
],
"x-ms-correlation-request-id": [
- "6e01b6fa-7603-45c5-a6bc-e79464b59293"
+ "79b76e34-a19c-4468-8997-dc106580b493"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030743Z:6e01b6fa-7603-45c5-a6bc-e79464b59293"
+ "AUSTRALIAEAST:20180607T133412Z:79b76e34-a19c-4468-8997-dc106580b493"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:42 GMT"
+ "Thu, 07 Jun 2018 13:34:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -676,28 +688,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0bc32fb8-cf31-4575-a89b-fba4f76e7946"
+ "a3537d52-dca0-4543-a12c-d35375f8089f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:45.0196802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:34:16.8756336Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1212"
+ "1234"
],
"Content-Type": [
"application/json"
@@ -709,31 +721,28 @@
"no-cache"
],
"x-ms-request-id": [
- "05889f09-cb20-4bb2-9dbc-186290ef339c"
+ "847f0cec-9bb6-443b-8fb5-dbc471fc151d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14970"
],
"x-ms-correlation-request-id": [
- "6a4f5be0-9a00-477e-b0f0-ab2af8fa4f90"
+ "1cc0174d-02c9-4789-825b-808e36d6fea9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030747Z:6a4f5be0-9a00-477e-b0f0-ab2af8fa4f90"
+ "AUSTRALIAEAST:20180607T133419Z:1cc0174d-02c9-4789-825b-808e36d6fea9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:46 GMT"
+ "Thu, 07 Jun 2018 13:34:18 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -748,28 +757,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2738119a-9fff-4ded-b5f1-b9035a80c759"
+ "45b2082f-ff20-4465-8a58-2cd75c56ffe6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"ps396\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:45.0196802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"ps5986\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:34:16.8756336Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1299"
+ "1322"
],
"Content-Type": [
"application/json"
@@ -781,31 +790,28 @@
"no-cache"
],
"x-ms-request-id": [
- "791a0d5d-aad0-47dc-a451-a5a73eea72d6"
+ "b158a631-5710-4c65-a009-797c12c16c5c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14966"
],
"x-ms-correlation-request-id": [
- "bb8b5507-e79b-4ac5-ba75-236af15113a5"
+ "5aade1a4-0735-4d72-a74c-53ae97c561f3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030751Z:bb8b5507-e79b-4ac5-ba75-236af15113a5"
+ "AUSTRALIAEAST:20180607T133426Z:5aade1a4-0735-4d72-a74c-53ae97c561f3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:50 GMT"
+ "Thu, 07 Jun 2018 13:34:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -820,28 +826,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1dbd7e4-0aea-4f30-96aa-bb3d484fd0ac"
+ "80526227-fb57-445b-9828-a6a91d39385f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:45.0196802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:34:16.8756336Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1212"
+ "1234"
],
"Content-Type": [
"application/json"
@@ -853,31 +859,28 @@
"no-cache"
],
"x-ms-request-id": [
- "24ac6d40-6562-4b77-a447-df57a7732325"
+ "6f8673e8-5070-410c-92e4-9b59a5de30c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14963"
],
"x-ms-correlation-request-id": [
- "1a7915c7-df9a-40c4-b5eb-6782ebb5ef89"
+ "944263e4-0815-4050-93cf-78f502430587"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030755Z:1a7915c7-df9a-40c4-b5eb-6782ebb5ef89"
+ "AUSTRALIAEAST:20180607T133431Z:944263e4-0815-4050-93cf-78f502430587"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:54 GMT"
+ "Thu, 07 Jun 2018 13:34:31 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -898,25 +901,25 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b8bb52b-a954-4a41-a961-ca2d1c015413"
+ "abe599c0-273f-41a0-bc6d-6d11aab7f7dd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "528"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -924,41 +927,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "6215f1b5-9944-446b-bb93-5bb1d7467e7d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14983"
+ ],
+ "x-ms-request-id": [
+ "0ccda5a1-c8bb-4315-b8bf-238064b88646"
],
"x-ms-correlation-request-id": [
- "7fdf9f75-be3f-4c95-adf5-e4ea7faf83f4"
+ "0ccda5a1-c8bb-4315-b8bf-238064b88646"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030626Z:7fdf9f75-be3f-4c95-adf5-e4ea7faf83f4"
+ "AUSTRALIAEAST:20180607T133239Z:0ccda5a1-c8bb-4315-b8bf-238064b88646"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:25 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 13:32:38 GMT"
]
},
"StatusCode": 200
@@ -970,22 +961,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2df25c50-52e5-4b0d-b2f1-950bfed846fc"
+ "f67f8ba5-fcb2-43a2-bd63-fc1b8c70ae1b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:09.0537604Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:33:32.184259Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "497"
],
"Content-Type": [
"application/json"
@@ -997,31 +988,28 @@
"no-cache"
],
"x-ms-request-id": [
- "481b05e5-4037-44c7-9f13-b128e07a75c2"
+ "23b598d1-8c42-4d02-84ad-83976466f995"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14974"
],
"x-ms-correlation-request-id": [
- "71b33f17-308f-4ca5-8514-7c12644a0d60"
+ "a8d212e0-5be8-4c06-8c7e-81f585d87c33"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030741Z:71b33f17-308f-4ca5-8514-7c12644a0d60"
+ "AUSTRALIAEAST:20180607T133410Z:a8d212e0-5be8-4c06-8c7e-81f585d87c33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:41 GMT"
+ "Thu, 07 Jun 2018 13:34:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1042,22 +1030,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29d44efb-5da7-480a-9eaa-ce5e53c1412c"
+ "d83a8fe4-10a1-442a-bd60-11b9734d6a13"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:45.0196802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:34:16.8756336Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "498"
],
"Content-Type": [
"application/json"
@@ -1069,31 +1057,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e3a64207-06a2-42bf-9a28-d0e3a85b8fd6"
+ "097678d9-7c5c-4372-9342-c66d3366b883"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14971"
],
"x-ms-correlation-request-id": [
- "e6b12e69-5a31-4ddc-9259-12d08b4a4cfc"
+ "391e25be-a918-4923-a326-c22db0fdc0c0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030746Z:e6b12e69-5a31-4ddc-9259-12d08b4a4cfc"
+ "AUSTRALIAEAST:20180607T133417Z:391e25be-a918-4923-a326-c22db0fdc0c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:46 GMT"
+ "Thu, 07 Jun 2018 13:34:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1114,22 +1099,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "562885aa-2ddd-443a-94c3-eccd4f677e3c"
+ "db220fa1-b0f3-4114-8779-2bb30c4b22aa"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:45.0196802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:34:16.8756336Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "498"
],
"Content-Type": [
"application/json"
@@ -1141,31 +1126,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2994f2de-31a8-4730-afbb-5ba707711f78"
+ "ece05dfd-5e57-4788-b373-29491267909d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14969"
],
"x-ms-correlation-request-id": [
- "9a5a4e3f-8ee2-4ff8-a5ac-c78c72110f8f"
+ "d45666f9-d855-4a80-9a60-f803e6b42830"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030748Z:9a5a4e3f-8ee2-4ff8-a5ac-c78c72110f8f"
+ "AUSTRALIAEAST:20180607T133422Z:d45666f9-d855-4a80-9a60-f803e6b42830"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:48 GMT"
+ "Thu, 07 Jun 2018 13:34:21 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1186,22 +1168,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ec34508-bc3a-4b56-99f6-8ca9bd9dcf05"
+ "cf9b892f-1de3-41d1-87f1-8b93abac8042"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:45.0196802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:34:16.8756336Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "498"
],
"Content-Type": [
"application/json"
@@ -1213,31 +1195,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b98a3292-af44-4966-887a-d8a50c07ea1e"
+ "5b775b78-f0a5-4af5-bf58-5bc6bdd665b8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14967"
],
"x-ms-correlation-request-id": [
- "3a830d4e-cbba-4110-9667-e969407bb12f"
+ "e0db628f-29e6-4d8a-bb48-f851eee29230"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030750Z:3a830d4e-cbba-4110-9667-e969407bb12f"
+ "AUSTRALIAEAST:20180607T133424Z:e0db628f-29e6-4d8a-bb48-f851eee29230"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:49 GMT"
+ "Thu, 07 Jun 2018 13:34:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1258,22 +1237,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e171432-e8ea-4e27-955e-c067f4762597"
+ "e55b480b-7b1d-4196-b123-3621930fcb5b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:45.0196802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:34:16.8756336Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "498"
],
"Content-Type": [
"application/json"
@@ -1285,31 +1264,28 @@
"no-cache"
],
"x-ms-request-id": [
- "36dca244-f52e-467b-bcbf-ad1d43205910"
+ "f63f3112-8b89-4e37-b2d7-61a72fa125c4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14965"
],
"x-ms-correlation-request-id": [
- "2457a297-2b1f-4da3-b544-0e9817601186"
+ "0008ddec-12f7-4023-a383-90137cc471b3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030753Z:2457a297-2b1f-4da3-b544-0e9817601186"
+ "AUSTRALIAEAST:20180607T133429Z:0008ddec-12f7-4023-a383-90137cc471b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:52 GMT"
+ "Thu, 07 Jun 2018 13:34:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1324,28 +1300,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0cf63e7d-d10f-4b54-a3ab-434c9e6d5bfc"
+ "75d707bf-29d4-4ff8-a293-1385e763ac50"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps240' under resource group 'ps2205' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7188' under resource group 'ps5601' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "148"
+ "149"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1360,43 +1336,46 @@
"gateway"
],
"x-ms-request-id": [
- "f9ae27cf-0f9f-4881-a1e8-f128aff2d2b2"
+ "33f3e884-91d0-4dc6-b316-989532597958"
],
"x-ms-correlation-request-id": [
- "f9ae27cf-0f9f-4881-a1e8-f128aff2d2b2"
+ "33f3e884-91d0-4dc6-b316-989532597958"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030626Z:f9ae27cf-0f9f-4881-a1e8-f128aff2d2b2"
+ "AUSTRALIAEAST:20180607T133242Z:33f3e884-91d0-4dc6-b316-989532597958"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:25 GMT"
+ "Thu, 07 Jun 2018 13:32:41 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps240.azuredatalakestore.net\",\r\n \"accountId\": \"c758cc61-88b6-4500-bba5-50543566fd5a\",\r\n \"creationTime\": \"2017-12-07T03:06:31.613475Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:06:31.613475Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6390d185-dd0f-44e3-9fe9-a60ed87cb5c2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240\",\r\n \"name\": \"ps240\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7188.azuredatalakestore.net\",\r\n \"accountId\": \"34af7a19-9764-46b8-a0a5-e1763453e501\",\r\n \"creationTime\": \"2018-06-07T13:32:51.7593596Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:32:51.7593596Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"54cb3cc4-2acb-49cd-9f9c-a51fd2239dfb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188\",\r\n \"name\": \"ps7188\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "903"
+ "992"
],
"Content-Type": [
"application/json"
@@ -1408,31 +1387,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8f055583-6b78-475d-9a0e-f2e9810817dc"
+ "b7226eb9-190b-4a8d-b73e-0aec9caf5919"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14977"
],
"x-ms-correlation-request-id": [
- "13d670ce-f3cd-4238-9da6-74e4429efe48"
+ "027f41b7-a0cc-4126-964e-fbe8c5b223ff"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030703Z:13d670ce-f3cd-4238-9da6-74e4429efe48"
+ "AUSTRALIAEAST:20180607T133326Z:027f41b7-a0cc-4126-964e-fbe8c5b223ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:02 GMT"
+ "Thu, 07 Jun 2018 13:33:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1447,28 +1423,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae74d7e0-825b-4d56-a431-3137ac09a1dc"
+ "bae4cb56-90ee-49a8-b358-65274d97d3f2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps240.azuredatalakestore.net\",\r\n \"accountId\": \"c758cc61-88b6-4500-bba5-50543566fd5a\",\r\n \"creationTime\": \"2017-12-07T03:06:31.613475Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:06:31.613475Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6390d185-dd0f-44e3-9fe9-a60ed87cb5c2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240\",\r\n \"name\": \"ps240\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7188.azuredatalakestore.net\",\r\n \"accountId\": \"34af7a19-9764-46b8-a0a5-e1763453e501\",\r\n \"creationTime\": \"2018-06-07T13:32:51.7593596Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:32:51.7593596Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"54cb3cc4-2acb-49cd-9f9c-a51fd2239dfb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188\",\r\n \"name\": \"ps7188\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "903"
+ "992"
],
"Content-Type": [
"application/json"
@@ -1480,31 +1456,28 @@
"no-cache"
],
"x-ms-request-id": [
- "202c6c6a-f101-4387-9678-6d481d1e7387"
+ "95192d3b-80d2-4722-9c0e-6fbd129368fa"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14976"
],
"x-ms-correlation-request-id": [
- "a2ad348e-e1af-4e95-99d6-5b3ee102ee2d"
+ "2cc32460-a904-4ff5-b920-401e44dfb376"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030759Z:a2ad348e-e1af-4e95-99d6-5b3ee102ee2d"
+ "AUSTRALIAEAST:20180607T133439Z:2cc32460-a904-4ff5-b920-401e44dfb376"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:58 GMT"
+ "Thu, 07 Jun 2018 13:34:38 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1519,31 +1492,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "6dd5dfab-3f86-451c-a0c4-953c82976d2a"
+ "805b9c93-97a6-4f53-9910-751e2626b3ce"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c758cc61-88b6-4500-bba5-50543566fd5a\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240\",\r\n \"name\": \"ps240\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"34af7a19-9764-46b8-a0a5-e1763453e501\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188\",\r\n \"name\": \"ps7188\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"560"
@@ -1561,37 +1534,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c758cc61-88b6-4500-bba5-50543566fd5a0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/34af7a19-9764-46b8-a0a5-e1763453e5010?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "84ac1668-2ea4-4b29-98ec-1d03010e2121"
+ "e7d73ac6-89cd-49e8-adc7-58cd01c33a4e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "32d0d773-a5c7-427f-8685-1c32ecb066e3"
+ "e946a37d-7d85-4340-91f9-d0638beb4a4c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030631Z:32d0d773-a5c7-427f-8685-1c32ecb066e3"
+ "AUSTRALIAEAST:20180607T133250Z:e946a37d-7d85-4340-91f9-d0638beb4a4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:30 GMT"
+ "Thu, 07 Jun 2018 13:32:50 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1606,13 +1576,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c758cc61-88b6-4500-bba5-50543566fd5a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M3NThjYzYxLTg4YjYtNDUwMC1iYmE1LTUwNTQzNTY2ZmQ1YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/34af7a19-9764-46b8-a0a5-e1763453e5010?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzM0YWY3YTE5LTk3NjQtNDZiOC1hMGE1LWUxNzYzNDUzZTUwMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1633,31 +1603,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6f17a9a3-39f4-40ed-aa74-5347b628f591"
+ "5b9d149a-14eb-4281-890b-0e8286ddee5d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14980"
],
"x-ms-correlation-request-id": [
- "a6e8b7be-9fc3-41b6-a656-d0905cd3c2cc"
+ "ce37cce0-7280-4a59-8028-5c4387effe12"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030642Z:a6e8b7be-9fc3-41b6-a656-d0905cd3c2cc"
+ "AUSTRALIAEAST:20180607T133302Z:ce37cce0-7280-4a59-8028-5c4387effe12"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:41 GMT"
+ "Thu, 07 Jun 2018 13:33:01 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1672,13 +1639,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c758cc61-88b6-4500-bba5-50543566fd5a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M3NThjYzYxLTg4YjYtNDUwMC1iYmE1LTUwNTQzNTY2ZmQ1YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/34af7a19-9764-46b8-a0a5-e1763453e5010?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzM0YWY3YTE5LTk3NjQtNDZiOC1hMGE1LWUxNzYzNDUzZTUwMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1699,31 +1666,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d266b0fd-5058-407b-9d68-961a645b6aeb"
+ "72a8055c-cdef-46a3-8265-6937724d9546"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14979"
],
"x-ms-correlation-request-id": [
- "1c603c13-9ef6-4f3b-a678-fbb5c37b8585"
+ "e57f90cc-4c8e-4c04-9179-c819aff19a63"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030652Z:1c603c13-9ef6-4f3b-a678-fbb5c37b8585"
+ "AUSTRALIAEAST:20180607T133313Z:e57f90cc-4c8e-4c04-9179-c819aff19a63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:06:52 GMT"
+ "Thu, 07 Jun 2018 13:33:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1738,13 +1702,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c758cc61-88b6-4500-bba5-50543566fd5a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M3NThjYzYxLTg4YjYtNDUwMC1iYmE1LTUwNTQzNTY2ZmQ1YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/34af7a19-9764-46b8-a0a5-e1763453e5010?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzM0YWY3YTE5LTk3NjQtNDZiOC1hMGE1LWUxNzYzNDUzZTUwMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1765,31 +1729,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9859fe8d-c277-405a-a736-1c541ebd5f81"
+ "89879851-434d-4d3d-9cb9-0bbedcefa254"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14978"
],
"x-ms-correlation-request-id": [
- "6b260e8f-4b8b-42d4-89de-3d52491bcd00"
+ "6aa85acd-943a-402c-b67d-afaba2ac0738"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030703Z:6b260e8f-4b8b-42d4-89de-3d52491bcd00"
+ "AUSTRALIAEAST:20180607T133324Z:6aa85acd-943a-402c-b67d-afaba2ac0738"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:02 GMT"
+ "Thu, 07 Jun 2018 13:33:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1804,10 +1765,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps240\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7188\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1816,19 +1777,19 @@
"198"
],
"x-ms-client-request-id": [
- "a59e2695-dd46-4d5b-9b9d-2d917976ae6a"
+ "38090fce-e5b1-4178-ae01-dbdce0ae29e8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"487"
@@ -1846,37 +1807,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/71ca4312-fb70-4812-a58f-1dcf0a944a690?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/c825624b-f3fd-4d7c-91d9-05bd9eccebf10?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "f6a84c8e-84c1-42d8-9213-d62df947af58"
+ "4e52fb59-a046-4891-add8-f4b1f8d43677"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1195"
],
"x-ms-correlation-request-id": [
- "f9237085-b0b0-456e-90c8-326663b2fa64"
+ "a519fc3f-0336-49ae-a839-46cf4992a17e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030706Z:f9237085-b0b0-456e-90c8-326663b2fa64"
+ "AUSTRALIAEAST:20180607T133330Z:a519fc3f-0336-49ae-a839-46cf4992a17e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:06 GMT"
+ "Thu, 07 Jun 2018 13:33:29 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1891,16 +1849,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/71ca4312-fb70-4812-a58f-1dcf0a944a690?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83MWNhNDMxMi1mYjcwLTQ4MTItYTU4Zi0xZGNmMGE5NDRhNjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/c825624b-f3fd-4d7c-91d9-05bd9eccebf10?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9jODI1NjI0Yi1mM2ZkLTRkN2MtOTFkOS0wNWJkOWVjY2ViZjEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1918,31 +1876,28 @@
"no-cache"
],
"x-ms-request-id": [
- "eafb106d-4f84-414a-8bcb-947801a37755"
+ "7e2e7be8-0af2-437d-a055-c95bd8a1bd84"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14980"
],
"x-ms-correlation-request-id": [
- "3de9c069-f984-4273-b410-7241824f8de1"
+ "de6ff891-6cd1-492e-99ef-979601630774"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030717Z:3de9c069-f984-4273-b410-7241824f8de1"
+ "AUSTRALIAEAST:20180607T133341Z:de6ff891-6cd1-492e-99ef-979601630774"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:17 GMT"
+ "Thu, 07 Jun 2018 13:33:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1957,16 +1912,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/71ca4312-fb70-4812-a58f-1dcf0a944a690?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83MWNhNDMxMi1mYjcwLTQ4MTItYTU4Zi0xZGNmMGE5NDRhNjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/c825624b-f3fd-4d7c-91d9-05bd9eccebf10?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9jODI1NjI0Yi1mM2ZkLTRkN2MtOTFkOS0wNWJkOWVjY2ViZjEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1984,31 +1939,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7e6f4c1d-d910-4cf6-b12c-b998ce977c50"
+ "73d01fa1-d05c-4f4d-8bbb-accc0ea3e0af"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14979"
],
"x-ms-correlation-request-id": [
- "eca486b1-09e7-4e08-84c7-8d61c0f31e58"
+ "5c68160b-5f36-40c1-9214-47bc0d65ad29"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030728Z:eca486b1-09e7-4e08-84c7-8d61c0f31e58"
+ "AUSTRALIAEAST:20180607T133353Z:5c68160b-5f36-40c1-9214-47bc0d65ad29"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:27 GMT"
+ "Thu, 07 Jun 2018 13:33:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2023,16 +1975,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/71ca4312-fb70-4812-a58f-1dcf0a944a690?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83MWNhNDMxMi1mYjcwLTQ4MTItYTU4Zi0xZGNmMGE5NDRhNjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/c825624b-f3fd-4d7c-91d9-05bd9eccebf10?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9jODI1NjI0Yi1mM2ZkLTRkN2MtOTFkOS0wNWJkOWVjY2ViZjEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -2050,31 +2002,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c6ab61df-cac4-4243-83bf-4ce7356fd7dd"
+ "38e589db-1553-4a41-aa04-43dfcfc98e87"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14978"
],
"x-ms-correlation-request-id": [
- "3381ea21-f99f-4463-a660-14570cd2d611"
+ "fd1a47cd-298e-49d3-8cfe-38eed4a32b51"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030738Z:3381ea21-f99f-4463-a660-14570cd2d611"
+ "AUSTRALIAEAST:20180607T133404Z:fd1a47cd-298e-49d3-8cfe-38eed4a32b51"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:38 GMT"
+ "Thu, 07 Jun 2018 13:34:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2089,8 +2038,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\"\r\n }\r\n}",
"RequestHeaders": {
@@ -2101,22 +2050,22 @@
"116"
],
"x-ms-client-request-id": [
- "a06e1403-74c9-41ef-b153-e733a9e9322e"
+ "dfb1fc61-b0d9-4045-bb5d-52c42e060dd4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps240\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps240\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1920.azuredatalakeanalytics.net\",\r\n \"accountId\": \"71ca4312-fb70-4812-a58f-1dcf0a944a69\",\r\n \"creationTime\": \"2017-12-07T03:07:09.0537604Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:07:45.0196802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920\",\r\n \"name\": \"ps1920\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7188\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7188\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5326.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c825624b-f3fd-4d7c-91d9-05bd9eccebf1\",\r\n \"creationTime\": \"2018-06-07T13:33:32.184259Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:34:16.8756336Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326\",\r\n \"name\": \"ps5326\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "944"
+ "966"
],
"Content-Type": [
"application/json"
@@ -2128,31 +2077,28 @@
"no-cache"
],
"x-ms-request-id": [
- "3f196347-0ca8-40ab-9616-3d3fe8ed6226"
+ "1ec834ea-65c1-42b0-94f4-772774ab59bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1194"
],
"x-ms-correlation-request-id": [
- "6dafaad1-2bba-44b1-b88c-a5b2062129dd"
+ "0fdd1d44-5eef-4ccf-baf9-c3a72baaf186"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030745Z:6dafaad1-2bba-44b1-b88c-a5b2062129dd"
+ "AUSTRALIAEAST:20180607T133416Z:0fdd1d44-5eef-4ccf-baf9-c3a72baaf186"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:44 GMT"
+ "Thu, 07 Jun 2018 13:34:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2167,8 +2113,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920/firewallRules/ps396?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMC9maXJld2FsbFJ1bGVzL3BzMzk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326/firewallRules/ps5986?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNi9maXJld2FsbFJ1bGVzL3BzNTk4Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n }\r\n}",
"RequestHeaders": {
@@ -2179,22 +2125,22 @@
"97"
],
"x-ms-client-request-id": [
- "236eea07-10ce-465f-bf0a-e7f88610d2bc"
+ "a724086e-cbba-4b83-b575-d0839ba15605"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920/firewallRules/ps396\",\r\n \"name\": \"ps396\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326/firewallRules/ps5986\",\r\n \"name\": \"ps5986\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "302"
+ "304"
],
"Content-Type": [
"application/json"
@@ -2206,31 +2152,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6e3561b5-b690-485e-b516-5f46b02a0aa8"
+ "5874f659-4c50-4821-8880-d012969d476a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1193"
],
"x-ms-correlation-request-id": [
- "1f11a848-284e-4968-8b50-675fe7d760ab"
+ "c0caf547-0475-4be7-be4f-a18e6aa31977"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030747Z:1f11a848-284e-4968-8b50-675fe7d760ab"
+ "AUSTRALIAEAST:20180607T133420Z:c0caf547-0475-4be7-be4f-a18e6aa31977"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:47 GMT"
+ "Thu, 07 Jun 2018 13:34:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2245,28 +2188,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920/firewallRules/ps396?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMC9maXJld2FsbFJ1bGVzL3BzMzk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326/firewallRules/ps5986?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNi9maXJld2FsbFJ1bGVzL3BzNTk4Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8a0d7958-b7b7-42f6-b85d-3af76bfe80ef"
+ "251284b4-a10d-43a3-b930-84353d053ee2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920/firewallRules/ps396\",\r\n \"name\": \"ps396\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326/firewallRules/ps5986\",\r\n \"name\": \"ps5986\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "302"
+ "304"
],
"Content-Type": [
"application/json"
@@ -2278,31 +2221,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2c8ff828-8bcd-4521-b281-2677a1eba1e3"
+ "9f61a446-4ecd-4b62-ab43-1c27e5197881"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14968"
],
"x-ms-correlation-request-id": [
- "976ff37d-d3af-4007-9bc9-61e3ff34bf59"
+ "eabce067-3594-4d50-b32c-6cb6df819405"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030749Z:976ff37d-d3af-4007-9bc9-61e3ff34bf59"
+ "AUSTRALIAEAST:20180607T133423Z:eabce067-3594-4d50-b32c-6cb6df819405"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:48 GMT"
+ "Thu, 07 Jun 2018 13:34:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2317,22 +2257,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920/firewallRules/ps396?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMC9maXJld2FsbFJ1bGVzL3BzMzk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326/firewallRules/ps5986?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNi9maXJld2FsbFJ1bGVzL3BzNTk4Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f79ad28d-52ce-4911-b6a2-7c10635b3b55"
+ "45205b40-a151-419d-ad4e-b97e25f7513a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}",
@@ -2350,31 +2290,28 @@
"no-cache"
],
"x-ms-request-id": [
- "35968ea9-a123-4b7e-b62a-e8a1cfe9ca7b"
+ "90ba3e8a-ddfa-484d-9aad-7199667b2eb1"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14964"
],
"x-ms-correlation-request-id": [
- "49a448e4-9108-4437-a044-58774514665e"
+ "6620d363-6019-4598-a202-ec24835c9047"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030753Z:49a448e4-9108-4437-a044-58774514665e"
+ "AUSTRALIAEAST:20180607T133430Z:6620d363-6019-4598-a202-ec24835c9047"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:53 GMT"
+ "Thu, 07 Jun 2018 13:34:29 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2389,22 +2326,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920/firewallRules/ps396?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMC9maXJld2FsbFJ1bGVzL3BzMzk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326/firewallRules/ps5986?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNi9maXJld2FsbFJ1bGVzL3BzNTk4Nj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a4d540ff-a00e-41d7-bf40-b3bc9d344c38"
+ "9f2d590c-989f-424e-8989-7043467a1cf5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2419,28 +2356,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6ccb3e4a-1924-4c60-a413-89014cf29c89"
+ "4cdf1fc3-b67d-4f27-bc56-722137e7a525"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "9945121e-ee12-4b34-b8f2-aeb6122aea1e"
+ "e69de21b-f79b-4780-b1e2-1a70d9356c54"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030752Z:9945121e-ee12-4b34-b8f2-aeb6122aea1e"
+ "AUSTRALIAEAST:20180607T133427Z:e69de21b-f79b-4780-b1e2-1a70d9356c54"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:51 GMT"
+ "Thu, 07 Jun 2018 13:34:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2455,22 +2392,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeAnalytics/accounts/ps1920?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTkyMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeAnalytics/accounts/ps5326?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTMyNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1cd6b94f-ba32-418c-9370-0810760ef619"
+ "dc696452-11d6-4256-b768-e4fcd7bf4861"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2485,28 +2422,28 @@
"no-cache"
],
"x-ms-request-id": [
- "84953b5c-633f-4859-9f7e-4f59b6c65a9e"
+ "59510891-a3e4-43d9-b974-d43932c2d8fe"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "b8f24601-7a72-42c1-994a-5a29344dcdf5"
+ "2b426256-71cd-4ef0-bcb1-1f3d98018e04"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030758Z:b8f24601-7a72-42c1-994a-5a29344dcdf5"
+ "AUSTRALIAEAST:20180607T133436Z:2b426256-71cd-4ef0-bcb1-1f3d98018e04"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:07:58 GMT"
+ "Thu, 07 Jun 2018 13:34:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2521,19 +2458,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2205/providers/Microsoft.DataLakeStore/accounts/ps240?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5601/providers/Microsoft.DataLakeStore/accounts/ps7188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTYwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3MTg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e29056cd-1b10-497e-bf35-ad5a2e5f331b"
+ "2e9955a9-69db-4c4b-b1cd-037cf27fdd71"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -2551,28 +2488,28 @@
"no-cache"
],
"x-ms-request-id": [
- "08b3613a-e101-4523-b163-c5e1dec2888b"
+ "c7d0f201-8939-4095-8782-34e5378cd3c4"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "c5d0a03d-82d8-441f-88e7-2ac1d819b6f0"
+ "7343757f-1202-424f-9905-4dce25744531"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030803Z:c5d0a03d-82d8-441f-88e7-2ac1d819b6f0"
+ "AUSTRALIAEAST:20180607T133445Z:7343757f-1202-424f-9905-4dce25744531"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:08:02 GMT"
+ "Thu, 07 Jun 2018 13:34:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2587,13 +2524,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2205?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMjIwNT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5601?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTYwMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90773b6d-2ef5-47eb-bdd5-478fc544af99"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2610,44 +2556,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-request-id": [
- "f988dca3-d8bf-47d8-b328-cbe922069818"
+ "09ff028d-4b23-4e2d-984b-219f1488b4a8"
],
"x-ms-correlation-request-id": [
- "f988dca3-d8bf-47d8-b328-cbe922069818"
+ "09ff028d-4b23-4e2d-984b-219f1488b4a8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030805Z:f988dca3-d8bf-47d8-b328-cbe922069818"
+ "AUSTRALIAEAST:20180607T133449Z:09ff028d-4b23-4e2d-984b-219f1488b4a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:08:05 GMT"
+ "Thu, 07 Jun 2018 13:34:49 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMDUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMDUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU1EVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMk1ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2665,43 +2614,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14946"
],
"x-ms-request-id": [
- "27a97f39-bd8b-4333-88bb-3a95b395e000"
+ "c03afbd8-ee56-4085-8c18-7bed35bd302e"
],
"x-ms-correlation-request-id": [
- "27a97f39-bd8b-4333-88bb-3a95b395e000"
+ "c03afbd8-ee56-4085-8c18-7bed35bd302e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030805Z:27a97f39-bd8b-4333-88bb-3a95b395e000"
+ "AUSTRALIAEAST:20180607T133504Z:c03afbd8-ee56-4085-8c18-7bed35bd302e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:08:05 GMT"
+ "Thu, 07 Jun 2018 13:35:04 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMDUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMDUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU1EVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMk1ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2719,43 +2671,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14945"
],
"x-ms-request-id": [
- "9654da6e-d3b1-4b49-b831-f91f3f1ac0bc"
+ "bb67154f-89d6-4bf0-8637-2e20493e9b2b"
],
"x-ms-correlation-request-id": [
- "9654da6e-d3b1-4b49-b831-f91f3f1ac0bc"
+ "bb67154f-89d6-4bf0-8637-2e20493e9b2b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030821Z:9654da6e-d3b1-4b49-b831-f91f3f1ac0bc"
+ "AUSTRALIAEAST:20180607T133520Z:bb67154f-89d6-4bf0-8637-2e20493e9b2b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:08:20 GMT"
+ "Thu, 07 Jun 2018 13:35:19 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMDUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMDUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU1EVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMk1ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2769,47 +2724,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14944"
],
"x-ms-request-id": [
- "6c296ab6-cf71-467f-a597-948e99a16487"
+ "65ceb37b-a98c-4191-85b9-765398c9bdb0"
],
"x-ms-correlation-request-id": [
- "6c296ab6-cf71-467f-a597-948e99a16487"
+ "65ceb37b-a98c-4191-85b9-765398c9bdb0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030836Z:6c296ab6-cf71-467f-a597-948e99a16487"
+ "AUSTRALIAEAST:20180607T133535Z:65ceb37b-a98c-4191-85b9-765398c9bdb0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:08:35 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMDUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 13:35:35 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMDUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU1EVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMk1ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2824,25 +2776,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14943"
],
"x-ms-request-id": [
- "ed777b7a-f667-476c-b4c4-52ef982299b5"
+ "89e87d91-2594-4143-b2c6-ecd1a329ec32"
],
"x-ms-correlation-request-id": [
- "ed777b7a-f667-476c-b4c4-52ef982299b5"
+ "89e87d91-2594-4143-b2c6-ecd1a329ec32"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T030851Z:ed777b7a-f667-476c-b4c4-52ef982299b5"
+ "AUSTRALIAEAST:20180607T133536Z:89e87d91-2594-4143-b2c6-ecd1a329ec32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:08:51 GMT"
+ "Thu, 07 Jun 2018 13:35:36 GMT"
]
},
"StatusCode": 200
@@ -2850,12 +2805,12 @@
],
"Names": {
"": [
- "ps2205",
- "ps1920",
- "ps240"
+ "ps5601",
+ "ps5326",
+ "ps7188"
],
"Test-DataLakeAnalyticsFirewall": [
- "ps396"
+ "ps5986"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaJob.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaJob.json
index 335324aab32d..2078fb3f6a52 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaJob.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaJob.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,7 +10,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1627"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "36d958f7-31f1-4bc4-978f-0f1a5bf2e1ae"
+ "51e55fb0-5764-4245-88ae-4fafd6b292ce"
],
"x-ms-correlation-request-id": [
- "36d958f7-31f1-4bc4-978f-0f1a5bf2e1ae"
+ "51e55fb0-5764-4245-88ae-4fafd6b292ce"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172626Z:36d958f7-31f1-4bc4-978f-0f1a5bf2e1ae"
+ "AUSTRALIAEAST:20180607T132302Z:51e55fb0-5764-4245-88ae-4fafd6b292ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:26:26 GMT"
+ "Thu, 07 Jun 2018 13:23:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -61,7 +61,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1627"
@@ -76,16 +76,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-request-id": [
- "550906a1-57f6-422c-b1e8-2ec0fdf9656e"
+ "269a6b9b-962e-4e3f-a12c-ccce3158efa8"
],
"x-ms-correlation-request-id": [
- "550906a1-57f6-422c-b1e8-2ec0fdf9656e"
+ "269a6b9b-962e-4e3f-a12c-ccce3158efa8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172627Z:550906a1-57f6-422c-b1e8-2ec0fdf9656e"
+ "AUSTRALIAEAST:20180607T132303Z:269a6b9b-962e-4e3f-a12c-ccce3158efa8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -97,28 +97,37 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:26:27 GMT"
+ "Thu, 07 Jun 2018 13:23:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6054?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNjA1ND9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3628?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzYyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "680ec9a9-392b-485f-a762-e8120975fb8c"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054\",\r\n \"name\": \"ps6054\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628\",\r\n \"name\": \"ps3628\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -133,16 +142,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "0e80da20-3c11-4fed-843d-edb548acefb7"
+ "c4309797-47ab-48bd-a9a4-fb8126f8352b"
],
"x-ms-correlation-request-id": [
- "0e80da20-3c11-4fed-843d-edb548acefb7"
+ "c4309797-47ab-48bd-a9a4-fb8126f8352b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172633Z:0e80da20-3c11-4fed-843d-edb548acefb7"
+ "AUSTRALIAEAST:20180607T132313Z:c4309797-47ab-48bd-a9a4-fb8126f8352b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,31 +163,31 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:26:33 GMT"
+ "Thu, 07 Jun 2018 13:23:13 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NzI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f3f42bb-b927-470c-ade1-5f6c0b42dcdc"
+ "e100aaf6-8fa2-4a17-b1cd-a82f6a5eaeaa"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps2251' under resource group 'ps6054' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps5726' under resource group 'ps3628' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -196,13 +205,13 @@
"gateway"
],
"x-ms-request-id": [
- "c5b1f614-c629-4f6f-9bc6-fa506d37d219"
+ "3b7f611a-f1ec-4af2-937e-fa55bed31a26"
],
"x-ms-correlation-request-id": [
- "c5b1f614-c629-4f6f-9bc6-fa506d37d219"
+ "3b7f611a-f1ec-4af2-937e-fa55bed31a26"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172634Z:c5b1f614-c629-4f6f-9bc6-fa506d37d219"
+ "AUSTRALIAEAST:20180607T132315Z:3b7f611a-f1ec-4af2-937e-fa55bed31a26"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -214,28 +223,28 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:26:34 GMT"
+ "Thu, 07 Jun 2018 13:23:15 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NzI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2251.azuredatalakestore.net\",\r\n \"accountId\": \"64fb07a8-ae74-42ac-bfdb-430dc070392c\",\r\n \"creationTime\": \"2018-03-07T17:26:42.8942003Z\",\r\n \"lastModifiedTime\": \"2018-03-07T17:26:42.8942003Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"115abc11-4a3f-4605-bd32-2079a0eb8af9\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251\",\r\n \"name\": \"ps2251\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5726.azuredatalakestore.net\",\r\n \"accountId\": \"7bc9abee-d4e3-4579-a55f-c3639f5e2e19\",\r\n \"creationTime\": \"2018-06-07T13:23:23.611769Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:23:23.611769Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"242a8e4c-5ed9-4374-ba5e-e18f57e6c0b3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "952"
+ "990"
],
"Content-Type": [
"application/json"
@@ -247,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "07089265-acbd-4c80-9c24-d22614e1235b"
+ "deb7e89f-89b5-4779-8f8a-e55abb83a6db"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14982"
],
"x-ms-correlation-request-id": [
- "bf615ff0-dc5f-47a4-84b2-fe8aedfbaf5c"
+ "c4f818c7-fdb8-4d99-962f-955b4c564f91"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172712Z:bf615ff0-dc5f-47a4-84b2-fe8aedfbaf5c"
+ "AUSTRALIAEAST:20180607T132358Z:c4f818c7-fdb8-4d99-962f-955b4c564f91"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:12 GMT"
+ "Thu, 07 Jun 2018 13:23:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -286,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NzI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e05723b8-a38a-460b-ac7b-e07ba186d20b"
+ "018f3895-9a63-46cc-8dfa-5643ff72ba82"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2251.azuredatalakestore.net\",\r\n \"accountId\": \"64fb07a8-ae74-42ac-bfdb-430dc070392c\",\r\n \"creationTime\": \"2018-03-07T17:26:42.8942003Z\",\r\n \"lastModifiedTime\": \"2018-03-07T17:26:42.8942003Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"115abc11-4a3f-4605-bd32-2079a0eb8af9\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251\",\r\n \"name\": \"ps2251\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5726.azuredatalakestore.net\",\r\n \"accountId\": \"7bc9abee-d4e3-4579-a55f-c3639f5e2e19\",\r\n \"creationTime\": \"2018-06-07T13:23:23.611769Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:23:23.611769Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"242a8e4c-5ed9-4374-ba5e-e18f57e6c0b3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "952"
+ "990"
],
"Content-Type": [
"application/json"
@@ -319,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "856a5a74-1d8e-40d6-9e1b-05db20884a38"
+ "79d43c23-946c-4e38-b2a1-0df358408134"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14992"
],
"x-ms-correlation-request-id": [
- "fcf2b68a-d90c-475a-a27f-7819a7dae31d"
+ "a93d46ee-1716-4e89-a5b1-d603438740b1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T173347Z:fcf2b68a-d90c-475a-a27f-7819a7dae31d"
+ "AUSTRALIAEAST:20180607T133041Z:a93d46ee-1716-4e89-a5b1-d603438740b1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:47 GMT"
+ "Thu, 07 Jun 2018 13:30:40 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -358,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NzI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "d0c4e41e-2850-4d27-961a-b5ededd61d06"
+ "134ab134-8145-40c4-9141-29f2d4011296"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"64fb07a8-ae74-42ac-bfdb-430dc070392c\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251\",\r\n \"name\": \"ps2251\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7bc9abee-d4e3-4579-a55f-c3639f5e2e19\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -400,37 +403,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/64fb07a8-ae74-42ac-bfdb-430dc070392c0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7bc9abee-d4e3-4579-a55f-c3639f5e2e190?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "3aad076b-43a8-4afd-a09c-7c549b3a6e7b"
+ "d281741b-b258-4380-84ec-b3ad36950768"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "32372223-de0f-4ff6-be10-b25f2fd2d099"
+ "a06bee2d-d6d5-4004-92fd-783c5ccee413"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172640Z:32372223-de0f-4ff6-be10-b25f2fd2d099"
+ "AUSTRALIAEAST:20180607T132323Z:a06bee2d-d6d5-4004-92fd-783c5ccee413"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:26:39 GMT"
+ "Thu, 07 Jun 2018 13:23:22 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -445,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/64fb07a8-ae74-42ac-bfdb-430dc070392c0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY0ZmIwN2E4LWFlNzQtNDJhYy1iZmRiLTQzMGRjMDcwMzkyYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7bc9abee-d4e3-4579-a55f-c3639f5e2e190?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzdiYzlhYmVlLWQ0ZTMtNDU3OS1hNTVmLWMzNjM5ZjVlMmUxOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -472,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "cffb6955-0bc8-45d8-951e-658ddc949215"
+ "3e8bb3ec-7a58-411c-afce-9aa923852eea"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14985"
],
"x-ms-correlation-request-id": [
- "7f3b102d-d20a-4c10-96b1-8d0603bc8733"
+ "f8a1faff-ea6b-4353-828b-739d1af0278f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172651Z:7f3b102d-d20a-4c10-96b1-8d0603bc8733"
+ "AUSTRALIAEAST:20180607T132334Z:f8a1faff-ea6b-4353-828b-739d1af0278f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:26:51 GMT"
+ "Thu, 07 Jun 2018 13:23:34 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -511,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/64fb07a8-ae74-42ac-bfdb-430dc070392c0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY0ZmIwN2E4LWFlNzQtNDJhYy1iZmRiLTQzMGRjMDcwMzkyYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7bc9abee-d4e3-4579-a55f-c3639f5e2e190?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzdiYzlhYmVlLWQ0ZTMtNDU3OS1hNTVmLWMzNjM5ZjVlMmUxOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -538,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0b11c634-72e6-45fc-82eb-5c02a4d9d56f"
+ "56bb20c5-7b26-45c4-abdc-4eeff0dd50f6"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14984"
],
"x-ms-correlation-request-id": [
- "e77e2faa-97a9-43d4-bc17-ab33c3979caf"
+ "361e7ac0-c9b5-4694-973c-9a68c1726b8c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172701Z:e77e2faa-97a9-43d4-bc17-ab33c3979caf"
+ "AUSTRALIAEAST:20180607T132345Z:361e7ac0-c9b5-4694-973c-9a68c1726b8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:01 GMT"
+ "Thu, 07 Jun 2018 13:23:44 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -577,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/64fb07a8-ae74-42ac-bfdb-430dc070392c0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY0ZmIwN2E4LWFlNzQtNDJhYy1iZmRiLTQzMGRjMDcwMzkyYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7bc9abee-d4e3-4579-a55f-c3639f5e2e190?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzdiYzlhYmVlLWQ0ZTMtNDU3OS1hNTVmLWMzNjM5ZjVlMmUxOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -604,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "beefbfdc-c2ee-494e-ae1b-a0397496246a"
+ "beebf4a6-f7d7-4457-bd27-84c167e71442"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14983"
],
"x-ms-correlation-request-id": [
- "fac958f3-8461-418e-b51b-c1e6196d3f4a"
+ "c44d32b5-3e61-425f-8909-b546c434bb84"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172712Z:fac958f3-8461-418e-b51b-c1e6196d3f4a"
+ "AUSTRALIAEAST:20180607T132357Z:c44d32b5-3e61-425f-8909-b546c434bb84"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:11 GMT"
+ "Thu, 07 Jun 2018 13:23:56 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -643,25 +634,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f24991c9-a121-4350-8cf5-fa815c250357"
+ "b1cf3cf4-5e9b-497c-8cec-61c22ba31118"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5869' under resource group 'ps6054' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4753' under resource group 'ps3628' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -679,13 +670,13 @@
"gateway"
],
"x-ms-request-id": [
- "52fe0abe-ae50-4a0c-b413-095fd6d67606"
+ "18397755-1120-4404-9829-2a9529196886"
],
"x-ms-correlation-request-id": [
- "52fe0abe-ae50-4a0c-b413-095fd6d67606"
+ "18397755-1120-4404-9829-2a9529196886"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172713Z:52fe0abe-ae50-4a0c-b413-095fd6d67606"
+ "AUSTRALIAEAST:20180607T132400Z:18397755-1120-4404-9829-2a9529196886"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -697,31 +688,31 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:13 GMT"
+ "Thu, 07 Jun 2018 13:23:59 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a63dc721-bf5d-4b69-95d5-e39791fd0401"
+ "f4f8b046-eec4-4d11-95ae-002717ca754c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5869' under resource group 'ps6054' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4753' under resource group 'ps3628' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -739,13 +730,13 @@
"gateway"
],
"x-ms-request-id": [
- "fb437f94-fd6f-46e6-9078-ad408f6fd3e0"
+ "cb1ea589-6e6c-4a16-a2e0-c5aa8ec3a0af"
],
"x-ms-correlation-request-id": [
- "fb437f94-fd6f-46e6-9078-ad408f6fd3e0"
+ "cb1ea589-6e6c-4a16-a2e0-c5aa8ec3a0af"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172713Z:fb437f94-fd6f-46e6-9078-ad408f6fd3e0"
+ "AUSTRALIAEAST:20180607T132400Z:cb1ea589-6e6c-4a16-a2e0-c5aa8ec3a0af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -757,28 +748,28 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:13 GMT"
+ "Thu, 07 Jun 2018 13:23:59 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2251\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2251\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5869.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6158a217-23c7-4ca3-9481-e0063aa548e5\",\r\n \"creationTime\": \"2018-03-07T17:27:18.0600855Z\",\r\n \"lastModifiedTime\": \"2018-03-07T17:27:18.0600855Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869\",\r\n \"name\": \"ps5869\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps5726\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5726\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4753.azuredatalakeanalytics.net\",\r\n \"accountId\": \"72df1e5a-ff54-41ad-9713-fa2b788b0a62\",\r\n \"creationTime\": \"2018-06-07T13:24:06.3442392Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:24:06.3442392Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -790,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1147c17d-8380-4788-bec4-630759b104ad"
+ "53b0c75e-df50-4429-bd38-35bd9ea667e9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14948"
],
"x-ms-correlation-request-id": [
- "de5747b1-ed2a-4a25-a40f-066f5bc29dbe"
+ "fabdfd7f-30bf-4b6a-97f8-ed4c4eddcb15"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172748Z:de5747b1-ed2a-4a25-a40f-066f5bc29dbe"
+ "AUSTRALIAEAST:20180607T132441Z:fabdfd7f-30bf-4b6a-97f8-ed4c4eddcb15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:48 GMT"
+ "Thu, 07 Jun 2018 13:24:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -829,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4164ea8a-b76f-4814-922b-852e1fed7bff"
+ "2500236c-fddb-4c29-84a4-0c239d7823f8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2251\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2251\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5869.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6158a217-23c7-4ca3-9481-e0063aa548e5\",\r\n \"creationTime\": \"2018-03-07T17:27:18.0600855Z\",\r\n \"lastModifiedTime\": \"2018-03-07T17:27:18.0600855Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869\",\r\n \"name\": \"ps5869\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps5726\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5726\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4753.azuredatalakeanalytics.net\",\r\n \"accountId\": \"72df1e5a-ff54-41ad-9713-fa2b788b0a62\",\r\n \"creationTime\": \"2018-06-07T13:24:06.3442392Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:24:06.3442392Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -862,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f25cfc1f-b972-4938-bf2e-ae38d348d28c"
+ "1481250b-bdcb-40a0-87b4-a6f6b0d9d0bf"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14947"
],
"x-ms-correlation-request-id": [
- "f60bd673-ad46-463e-a7cf-aa8939360905"
+ "d74f5b96-2918-4a17-bf22-fd54b27ad5b8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172748Z:f60bd673-ad46-463e-a7cf-aa8939360905"
+ "AUSTRALIAEAST:20180607T132442Z:d74f5b96-2918-4a17-bf22-fd54b27ad5b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:48 GMT"
+ "Thu, 07 Jun 2018 13:24:42 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -901,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4f86a630-51fb-4481-9fea-f62c17ea0fa4"
+ "8610e0e0-ea76-4f17-8fd7-74de654007c2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2251\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2251\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5869.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6158a217-23c7-4ca3-9481-e0063aa548e5\",\r\n \"creationTime\": \"2018-03-07T17:27:18.0600855Z\",\r\n \"lastModifiedTime\": \"2018-03-07T17:27:18.0600855Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869\",\r\n \"name\": \"ps5869\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps5726\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5726\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4753.azuredatalakeanalytics.net\",\r\n \"accountId\": \"72df1e5a-ff54-41ad-9713-fa2b788b0a62\",\r\n \"creationTime\": \"2018-06-07T13:24:06.3442392Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:24:06.3442392Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -934,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "226ad35f-a451-4df0-ba19-b3104247a56d"
+ "b1bd43d8-96d0-44cf-8500-ec589986f385"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14989"
],
"x-ms-correlation-request-id": [
- "b1a7f030-a42e-4ca3-80d0-ae07c9244dac"
+ "5f224117-3fca-4f0a-aab7-924a30fb4a82"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T173343Z:b1a7f030-a42e-4ca3-80d0-ae07c9244dac"
+ "AUSTRALIAEAST:20180607T133032Z:5f224117-3fca-4f0a-aab7-924a30fb4a82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:42 GMT"
+ "Thu, 07 Jun 2018 13:30:32 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -973,25 +955,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03ae7de2-4543-4e7b-9988-8a7dc56c3f9b"
+ "4c34a7cf-5f9d-45c8-8f7a-6dbc2bb1f864"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5869' under resource group 'ps6054' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4753' under resource group 'ps3628' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1009,13 +991,13 @@
"gateway"
],
"x-ms-request-id": [
- "758770ec-04d9-46af-8163-53e773b9b71f"
+ "207f3f89-5149-42e7-bcc6-d4d64500ee10"
],
"x-ms-correlation-request-id": [
- "758770ec-04d9-46af-8163-53e773b9b71f"
+ "207f3f89-5149-42e7-bcc6-d4d64500ee10"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T173346Z:758770ec-04d9-46af-8163-53e773b9b71f"
+ "AUSTRALIAEAST:20180607T133038Z:207f3f89-5149-42e7-bcc6-d4d64500ee10"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1027,31 +1009,31 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:46 GMT"
+ "Thu, 07 Jun 2018 13:30:38 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "27ad3bd6-b660-4c6a-9eef-b0703203cb34"
+ "9ac5eabe-8de0-4b22-9b85-b45fade99503"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5869' under resource group 'ps6054' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4753' under resource group 'ps3628' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1069,13 +1051,13 @@
"gateway"
],
"x-ms-request-id": [
- "13388d6b-8434-4a80-a698-c5b23f7e6641"
+ "9502f47b-187f-40af-82f6-505f9debf85c"
],
"x-ms-correlation-request-id": [
- "13388d6b-8434-4a80-a698-c5b23f7e6641"
+ "9502f47b-187f-40af-82f6-505f9debf85c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T173347Z:13388d6b-8434-4a80-a698-c5b23f7e6641"
+ "AUSTRALIAEAST:20180607T133039Z:9502f47b-187f-40af-82f6-505f9debf85c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1087,40 +1069,40 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:46 GMT"
+ "Thu, 07 Jun 2018 13:30:38 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps2251\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps2251\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5726\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps5726\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "abd74306-ba7e-45bf-ae33-e7c7e70cfd7d"
+ "3fa0e574-079f-4dfc-ba21-726a848438eb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps2251\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2251\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"6158a217-23c7-4ca3-9481-e0063aa548e5\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869\",\r\n \"name\": \"ps5869\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5726\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5726\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"72df1e5a-ff54-41ad-9713-fa2b788b0a62\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "487"
],
"Content-Type": [
"application/json"
@@ -1135,37 +1117,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6158a217-23c7-4ca3-9481-e0063aa548e50?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/72df1e5a-ff54-41ad-9713-fa2b788b0a620?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "9127bfcb-21e6-4c6a-a9ee-bde1894bc2df"
+ "09bb5177-bc49-480b-84ae-3d3e324fc209"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-correlation-request-id": [
- "5b5937ea-51a7-4bb5-8058-42d565584e15"
+ "a7e90eb2-1879-4445-98b5-514912af867e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172715Z:5b5937ea-51a7-4bb5-8058-42d565584e15"
+ "AUSTRALIAEAST:20180607T132405Z:a7e90eb2-1879-4445-98b5-514912af867e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:15 GMT"
+ "Thu, 07 Jun 2018 13:24:04 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1180,16 +1159,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6158a217-23c7-4ca3-9481-e0063aa548e50?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82MTU4YTIxNy0yM2M3LTRjYTMtOTQ4MS1lMDA2M2FhNTQ4ZTUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/72df1e5a-ff54-41ad-9713-fa2b788b0a620?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy83MmRmMWU1YS1mZjU0LTQxYWQtOTcxMy1mYTJiNzg4YjBhNjIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1207,31 +1186,28 @@
"no-cache"
],
"x-ms-request-id": [
- "64559fd0-16a4-407d-a164-176a9b38e833"
+ "eb9c1d8b-1ffb-48dc-8fc9-216a2a7ddc72"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14951"
],
"x-ms-correlation-request-id": [
- "7e888f02-e653-43bb-bd73-4b1cfabfa868"
+ "66ce3ae4-aa1c-4908-a7cd-bda8d582b979"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172726Z:7e888f02-e653-43bb-bd73-4b1cfabfa868"
+ "AUSTRALIAEAST:20180607T132417Z:66ce3ae4-aa1c-4908-a7cd-bda8d582b979"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:25 GMT"
+ "Thu, 07 Jun 2018 13:24:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1246,16 +1222,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6158a217-23c7-4ca3-9481-e0063aa548e50?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82MTU4YTIxNy0yM2M3LTRjYTMtOTQ4MS1lMDA2M2FhNTQ4ZTUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/72df1e5a-ff54-41ad-9713-fa2b788b0a620?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy83MmRmMWU1YS1mZjU0LTQxYWQtOTcxMy1mYTJiNzg4YjBhNjIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1273,31 +1249,28 @@
"no-cache"
],
"x-ms-request-id": [
- "afc81094-3899-45ff-9025-f6975b91ed44"
+ "61dba8ed-c913-4406-82ab-f4dc42e42447"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14950"
],
"x-ms-correlation-request-id": [
- "eb548dce-cc38-4018-9e12-fe8388d791f7"
+ "2a1131e7-9d31-423a-ba02-754b5fb7dbe1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172737Z:eb548dce-cc38-4018-9e12-fe8388d791f7"
+ "AUSTRALIAEAST:20180607T132428Z:2a1131e7-9d31-423a-ba02-754b5fb7dbe1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:36 GMT"
+ "Thu, 07 Jun 2018 13:24:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1312,16 +1285,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6158a217-23c7-4ca3-9481-e0063aa548e50?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82MTU4YTIxNy0yM2M3LTRjYTMtOTQ4MS1lMDA2M2FhNTQ4ZTUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/72df1e5a-ff54-41ad-9713-fa2b788b0a620?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy83MmRmMWU1YS1mZjU0LTQxYWQtOTcxMy1mYTJiNzg4YjBhNjIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1339,31 +1312,28 @@
"no-cache"
],
"x-ms-request-id": [
- "eaceb41b-2527-4f14-957b-2a667a5884f9"
+ "08bce603-3017-4f63-a6f5-4063e8386304"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14949"
],
"x-ms-correlation-request-id": [
- "fb035c0e-3e20-4f7c-926b-7af0c6996cd6"
+ "59b64ace-0987-487c-b2ca-1f065e5bb9f6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T172747Z:fb035c0e-3e20-4f7c-926b-7af0c6996cd6"
+ "AUSTRALIAEAST:20180607T132439Z:59b64ace-0987-487c-b2ca-1f065e5bb9f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:27:46 GMT"
+ "Thu, 07 Jun 2018 13:24:38 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1378,8 +1348,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/dd64db15-3099-4215-8bd6-3b28940cc360?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZGQ2NGRiMTUtMzA5OS00MjE1LThiZDYtM2IyODk0MGNjMzYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/472bbbe7-0df8-4a39-bb72-7a691c0661b9?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNDcyYmJiZTctMGRmOC00YTM5LWJiNzItN2E2OTFjMDY2MWI5P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
"RequestHeaders": {
@@ -1390,19 +1360,19 @@
"207"
],
"x-ms-client-request-id": [
- "6f6670bd-b0d2-4171-9efb-0afc81e22f0e"
+ "85730e1a-b190-4ae5-ad7e-ada1edbc7382"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"dd64db15-3099-4215-8bd6-3b28940cc360\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:32:52.8098746-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:32:52.8098746-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/32/dd64db15-3099-4215-8bd6-3b28940cc360/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"472bbbe7-0df8-4a39-bb72-7a691c0661b9\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:44.6979376+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:44.6979376+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/472bbbe7-0df8-4a39-bb72-7a691c0661b9/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1414,7 +1384,7 @@
"chunked"
],
"x-ms-request-id": [
- "488a9c05-1469-42db-a47e-5d8d742f05eb"
+ "7234e733-246c-4802-b479-9958cb5d2f41"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1426,28 +1396,28 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:32:52 GMT"
+ "Thu, 07 Jun 2018 13:29:44 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/dd64db15-3099-4215-8bd6-3b28940cc360/CancelJob?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZGQ2NGRiMTUtMzA5OS00MjE1LThiZDYtM2IyODk0MGNjMzYwL0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/472bbbe7-0df8-4a39-bb72-7a691c0661b9/CancelJob?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNDcyYmJiZTctMGRmOC00YTM5LWJiNzItN2E2OTFjMDY2MWI5L0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82cbcbb9-2dfb-401a-a66c-6db0be4a585f"
+ "a1959d7f-4bc9-44cc-bec7-9adaecb27d9c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -1459,7 +1429,7 @@
"chunked"
],
"x-ms-request-id": [
- "b7267aca-b564-4c17-990c-210f95635a6a"
+ "f5176fff-7f65-403a-9551-5e3ddc4fcf3a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1471,31 +1441,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:14 GMT"
+ "Thu, 07 Jun 2018 13:29:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/dd64db15-3099-4215-8bd6-3b28940cc360?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZGQ2NGRiMTUtMzA5OS00MjE1LThiZDYtM2IyODk0MGNjMzYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/472bbbe7-0df8-4a39-bb72-7a691c0661b9?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNDcyYmJiZTctMGRmOC00YTM5LWJiNzItN2E2OTFjMDY2MWI5P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "49ac807d-2d08-4452-b45f-19be0d2fc8db"
+ "60da125d-fed2-4544-ba3b-4843f46b5381"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"dd64db15-3099-4215-8bd6-3b28940cc360\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:32:52.8098746-08:00\",\r\n \"endTime\": \"2018-03-07T09:32:53.5442168-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by NetworkTester@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:32:52.8098746-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:32:53.2004818-08:00\",\r\n \"details\": \"Compilation:75f021a9-2de7-48c4-a349-be789da3ae45;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-03-07T09:32:53.5442168-08:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/32/dd64db15-3099-4215-8bd6-3b28940cc360/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/32/dd64db15-3099-4215-8bd6-3b28940cc360/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/32/dd64db15-3099-4215-8bd6-3b28940cc360/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.343735S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"472bbbe7-0df8-4a39-bb72-7a691c0661b9\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:44.6979376+08:00\",\r\n \"endTime\": \"2018-06-07T21:29:45.7917193+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by .\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:44.6979376+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:45.2135707+08:00\",\r\n \"details\": \"Compilation:6f673aeb-2280-474b-92c6-2369ce26115d;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-06-07T21:29:45.7917193+08:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/472bbbe7-0df8-4a39-bb72-7a691c0661b9/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/472bbbe7-0df8-4a39-bb72-7a691c0661b9/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/472bbbe7-0df8-4a39-bb72-7a691c0661b9/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.5781486S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1507,7 +1477,7 @@
"chunked"
],
"x-ms-request-id": [
- "979573b2-9d5a-455e-9ed8-6f3b78fe245f"
+ "67def882-1358-49f1-ab0f-b89a78a1fc32"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1519,31 +1489,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:14 GMT"
+ "Thu, 07 Jun 2018 13:29:48 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20ge%20datetimeoffset'2018-03-07T17:17:18.0600855%2B00:00'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE4LTAzLTA3VDE3JTNBMTclM0ExOC4wNjAwODU1JTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs?$filter=submitTime%20ge%20datetimeoffset'2018-06-07T13:14:06.3442392%2B00:00'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE4LTA2LTA3VDEzJTNBMTQlM0EwNi4zNDQyMzkyJTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ff33031-1421-421f-b953-ddf95cd9f757"
+ "6c0d4421-5258-41ba-9154-05c22197181e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"dd64db15-3099-4215-8bd6-3b28940cc360\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:32:52.8098746-08:00\",\r\n \"endTime\": \"2018-03-07T09:32:53.5442168-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"472bbbe7-0df8-4a39-bb72-7a691c0661b9\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:44.6979376+08:00\",\r\n \"endTime\": \"2018-06-07T21:29:45.7917193+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {}\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1555,7 +1525,7 @@
"chunked"
],
"x-ms-request-id": [
- "26d6ab99-6daa-4e5c-9cf9-c5b7df42e74f"
+ "e8f3983b-3643-48bb-923a-96c38e87b56f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1567,31 +1537,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:15 GMT"
+ "Thu, 07 Jun 2018 13:29:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20lt%20datetimeoffset'2018-03-07T17:37:18.0600855%2B00:00'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwbHQlMjBkYXRldGltZW9mZnNldCcyMDE4LTAzLTA3VDE3JTNBMzclM0ExOC4wNjAwODU1JTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs?$filter=submitTime%20lt%20datetimeoffset'2018-06-07T13:34:06.3442392%2B00:00'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwbHQlMjBkYXRldGltZW9mZnNldCcyMDE4LTA2LTA3VDEzJTNBMzQlM0EwNi4zNDQyMzkyJTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da693238-2f91-4f5e-8e29-f24a9f4cd62c"
+ "34b6b08c-805e-4167-bc83-271c94d7d773"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"dd64db15-3099-4215-8bd6-3b28940cc360\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:32:52.8098746-08:00\",\r\n \"endTime\": \"2018-03-07T09:32:53.5442168-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"472bbbe7-0df8-4a39-bb72-7a691c0661b9\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:44.6979376+08:00\",\r\n \"endTime\": \"2018-06-07T21:29:45.7917193+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {}\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1603,7 +1573,7 @@
"chunked"
],
"x-ms-request-id": [
- "446d7c40-9b5d-4cba-89c0-b72f2de1e2f6"
+ "f32affe4-9075-42fc-9303-9a7780422aeb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1615,14 +1585,14 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:15 GMT"
+ "Thu, 07 Jun 2018 13:29:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
"RequestHeaders": {
@@ -1633,19 +1603,19 @@
"885"
],
"x-ms-client-request-id": [
- "b3e45b3e-d569-4956-aafd-558995417835"
+ "cb7aa84b-ef39-4a4b-a912-c5cba8742e67"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1657,7 +1627,7 @@
"chunked"
],
"x-ms-request-id": [
- "0d09178e-deff-4752-a84f-0a3a9bd3a65a"
+ "a47ed33c-b678-42ab-a4bd-765e14dca7a5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1669,31 +1639,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:15 GMT"
+ "Thu, 07 Jun 2018 13:29:51 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "293c5446-41e4-40d1-9668-bb6172bbe1b5"
+ "deea87a1-408b-427e-b22f-23906b811a53"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.190617S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.1824025+08:00\",\r\n \"details\": \"Compilation:48bc38dc-60eb-4991-aad6-49bfffa16eea;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.3090784S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1705,7 +1675,7 @@
"chunked"
],
"x-ms-request-id": [
- "a1fe9344-d772-4988-b00c-4fa03d00f90f"
+ "46b7534b-66b5-4ae7-a0e3-71b045d96cd9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1717,31 +1687,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:16 GMT"
+ "Thu, 07 Jun 2018 13:29:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43134ee5-e8e7-4d9b-af93-d8bd5d4989e8"
+ "f47eacd4-35c9-4164-b201-303ecc030360"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.756803S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.1824025+08:00\",\r\n \"details\": \"Compilation:48bc38dc-60eb-4991-aad6-49bfffa16eea;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.2471595S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1753,7 +1723,7 @@
"chunked"
],
"x-ms-request-id": [
- "44432790-1a6b-4388-8b09-9f8c2ee8677a"
+ "d3d64bab-9c11-497f-a559-b55e08d6e3c8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1765,31 +1735,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:16 GMT"
+ "Thu, 07 Jun 2018 13:29:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6266321a-ebe1-44db-8446-a33c314409f1"
+ "8bda3cfa-7e69-4a50-8c58-5e3b5129eb49"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.3349236S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.1824025+08:00\",\r\n \"details\": \"Compilation:48bc38dc-60eb-4991-aad6-49bfffa16eea;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5597402S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1801,7 +1771,7 @@
"chunked"
],
"x-ms-request-id": [
- "864f7745-eee4-48b0-a8f6-76109bcd1687"
+ "baed39c2-89f3-4f00-8623-82a2e3f5f697"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1813,31 +1783,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:17 GMT"
+ "Thu, 07 Jun 2018 13:30:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a17accff-b19f-4543-a550-8a84253cac0f"
+ "981295f6-f357-40f0-9fec-b7e699919535"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.5224448S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.1824025+08:00\",\r\n \"details\": \"Compilation:48bc38dc-60eb-4991-aad6-49bfffa16eea;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9169387+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9325403+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:574bbafc-6abf-4778-af12-1df20a6d20d7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9481847+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"574bbafc-6abf-4778-af12-1df20a6d20d7\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"yarnApplicationId\": 1729636,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.7345362S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156016S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1849,7 +1819,7 @@
"chunked"
],
"x-ms-request-id": [
- "3eeb976a-256c-4464-a6d6-de0ef1ace7f1"
+ "9456e331-65ff-4238-a800-136bac101cf9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1861,31 +1831,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:17 GMT"
+ "Thu, 07 Jun 2018 13:30:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20128d9e-cab2-4c81-b511-be65c349a1b8"
+ "6eaa6ddc-bc48-47a1-90e1-61759aef0b6d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.7099472S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"startTime\": \"2018-06-07T21:30:10.1044816+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.1824025+08:00\",\r\n \"details\": \"Compilation:48bc38dc-60eb-4991-aad6-49bfffa16eea;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9169387+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9325403+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:574bbafc-6abf-4778-af12-1df20a6d20d7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9481847+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T21:30:10.1044816+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"574bbafc-6abf-4778-af12-1df20a6d20d7\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"yarnApplicationId\": 1729636,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.7345362S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156016S\",\r\n \"totalRunningTime\": \"PT3.7156212S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1897,7 +1867,7 @@
"chunked"
],
"x-ms-request-id": [
- "f6309f04-7a26-4569-b42d-3dece3b720ef"
+ "b0344f09-4bf4-401e-89b4-8864f1491ed5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1909,31 +1879,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:17 GMT"
+ "Thu, 07 Jun 2018 13:30:13 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d954da25-256b-4c8a-8ff9-1273724a3598"
+ "a6295d1a-30a1-4446-8499-dff02acf16e1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.9286844S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"startTime\": \"2018-06-07T21:30:10.1044816+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.1824025+08:00\",\r\n \"details\": \"Compilation:48bc38dc-60eb-4991-aad6-49bfffa16eea;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9169387+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9325403+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:574bbafc-6abf-4778-af12-1df20a6d20d7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9481847+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T21:30:10.1044816+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"574bbafc-6abf-4778-af12-1df20a6d20d7\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"yarnApplicationId\": 1729636,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.7345362S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156016S\",\r\n \"totalRunningTime\": \"PT9.0438701S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1945,7 +1915,7 @@
"chunked"
],
"x-ms-request-id": [
- "b0530167-d93f-411b-8564-d15122e6f888"
+ "6406a736-4905-40fa-8e1a-cf725b1f4443"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1957,31 +1927,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:17 GMT"
+ "Thu, 07 Jun 2018 13:30:18 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "80dac44a-b530-4cc0-beef-f9e134507c63"
+ "dd81b532-46c6-4851-8018-c27a70f8e0f3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.1162052S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"startTime\": \"2018-06-07T21:30:10.1044816+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.1824025+08:00\",\r\n \"details\": \"Compilation:48bc38dc-60eb-4991-aad6-49bfffa16eea;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9169387+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9325403+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:574bbafc-6abf-4778-af12-1df20a6d20d7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9481847+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T21:30:10.1044816+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"574bbafc-6abf-4778-af12-1df20a6d20d7\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"yarnApplicationId\": 1729636,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.7345362S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156016S\",\r\n \"totalRunningTime\": \"PT14.388008S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1993,7 +1963,7 @@
"chunked"
],
"x-ms-request-id": [
- "14c2f2e1-5583-46e4-9257-929202ef2af5"
+ "2e46870b-1e5d-4175-a58f-4c76211ab200"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2005,31 +1975,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:17 GMT"
+ "Thu, 07 Jun 2018 13:30:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/2656cd63-0e36-4b3f-b9cc-8bd3c514de28?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMjY1NmNkNjMtMGUzNi00YjNmLWI5Y2MtOGJkM2M1MTRkZTI4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "116ee587-e5c0-476e-b959-a3a90d306f22"
+ "8a6573bf-4103-4701-aa25-17e617ce2822"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.2843994S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"2656cd63-0e36-4b3f-b9cc-8bd3c514de28\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"startTime\": \"2018-06-07T21:30:10.1044816+08:00\",\r\n \"endTime\": \"2018-06-07T21:30:27.8859056+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.0417581+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:29:51.1824025+08:00\",\r\n \"details\": \"Compilation:48bc38dc-60eb-4991-aad6-49bfffa16eea;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9169387+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9325403+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:574bbafc-6abf-4778-af12-1df20a6d20d7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:30:05.9481847+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T21:30:10.1044816+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-06-07T21:30:27.8859056+08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"574bbafc-6abf-4778-af12-1df20a6d20d7\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5726.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/29/2656cd63-0e36-4b3f-b9cc-8bd3c514de28/algebra.xml\",\r\n \"yarnApplicationId\": 1729636,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.7345362S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156016S\",\r\n \"totalRunningTime\": \"PT17.781424S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2041,7 +2011,7 @@
"chunked"
],
"x-ms-request-id": [
- "ccfd714f-eb32-4a88-8a49-776c728dfdb9"
+ "46658305-655f-4027-b0d3-3d85cccdf0d1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2053,6001 +2023,325 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:18 GMT"
+ "Thu, 07 Jun 2018 13:30:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeAnalytics/accounts/ps4753?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f44065a7-765c-476b-808e-168ad9e2f7bf"
+ "4d4d855a-20f3-4396-85a2-32081576c7f2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.475574S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
],
"x-ms-request-id": [
- "5d752583-07d4-40a2-bd7d-9a3a621d4db8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:18 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a48c1d6b-24ab-4f67-a827-8e786b056f34"
+ "b94ccc00-dff2-47a5-8a0d-6248cd2de7d6"
],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.643778S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
- "Expires": [
- "-1"
+ "x-ms-correlation-request-id": [
+ "5f6286d1-ce9a-40c4-81bf-9aca069671b7"
],
- "Transfer-Encoding": [
- "chunked"
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T133038Z:5f6286d1-ce9a-40c4-81bf-9aca069671b7"
],
- "x-ms-request-id": [
- "1d1cc9e5-0aa4-4cf3-b991-a6fa36b74212"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:18 GMT"
+ "Thu, 07 Jun 2018 13:30:37 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3628/providers/Microsoft.DataLakeStore/accounts/ps5726?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NzI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a43b9bae-a955-417a-8bf0-5af10eca2462"
+ "8e2125ae-58ea-4712-bb32-c7b5a37510b5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.8349522S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
],
"x-ms-request-id": [
- "fe9163b2-1128-41cc-84dc-4fc1c5fdba18"
+ "b1fbcebe-9c55-4d26-9b1f-b4d0f44a1a2f"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d970f71-3b8b-4fda-ba08-c7f935b890a0"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T133046Z:4d970f71-3b8b-4fda-ba08-c7f935b890a0"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:18 GMT"
+ "Thu, 07 Jun 2018 13:30:46 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3628?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzYyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2aa0b6cf-05d5-4c3e-897a-03320be699bc"
+ "05dc9159-e04e-44c7-9309-3c4e6689b380"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.0031844S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-request-id": [
- "8a8be25c-447c-4e99-9ef2-93a9f593a441"
+ "f307ce09-bf8a-435f-8b26-791c296de366"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "f307ce09-bf8a-435f-8b26-791c296de366"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T133050Z:f307ce09-bf8a-435f-8b26-791c296de366"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:18 GMT"
+ "Thu, 07 Jun 2018 13:30:49 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "d17920d4-3748-4d51-9b4a-1a1bee4f50af"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.194351S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
],
"x-ms-request-id": [
- "afce87bb-d159-4d24-8c52-69d0820f938d"
+ "ca516f94-45d1-479b-a3c3-8bfa54c13f73"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "ca516f94-45d1-479b-a3c3-8bfa54c13f73"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T133105Z:ca516f94-45d1-479b-a3c3-8bfa54c13f73"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:18 GMT"
+ "Thu, 07 Jun 2018 13:31:05 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "e8cbbdba-aeb9-4302-8f1d-b0e52f728463"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.3662315S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
],
"x-ms-request-id": [
- "4acd3b43-5398-4a10-b93f-4154bfc7124c"
+ "a71e2fb3-7b37-4668-bc67-45a7c6646287"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "a71e2fb3-7b37-4668-bc67-45a7c6646287"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T133121Z:a71e2fb3-7b37-4668-bc67-45a7c6646287"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:33:19 GMT"
+ "Thu, 07 Jun 2018 13:31:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "8b997240-66db-471f-9623-39f31d3f048e"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.5537151S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e478ecb3-4f4c-4559-bda2-84aa2cd5db69"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:19 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "84c5b298-2682-43cb-900d-6b07a604c818"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.7219352S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "333972b7-024c-44b9-9ee8-017e9a1f072e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:19 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a97a0f56-4f9e-4b8a-bfe5-ad8d9c92b02f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.9287257S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "70864d6a-6e8e-49c7-b399-62e67f885434"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:19 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5e254126-9b6c-4bef-8535-47eddbc2bfff"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.096942S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c13ac5fb-192e-4b12-93c4-5cbf54cbeca2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:19 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b9994f64-b46a-4975-866e-bf3164a68048"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.4091527S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3a94b16e-f877-4671-b631-1740544f767f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:20 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7b201c26-fe79-4080-87a0-d57d94440af8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.7725134S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "754e154d-1f7d-4939-a2f3-8b950d20534d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:20 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ac1db222-32c2-4f97-bc7d-76e0b38852be"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.9756253S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "034082ae-bf2e-4a96-957b-798b9d9c525c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:20 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "07f58b68-866e-4cc2-8065-ec85838ba993"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.1475212S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f7ae3010-5760-48a7-9dd6-0bc41d4f6bda"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:20 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3ac73c3a-43e8-4440-87ef-2369d5ea1b59"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.3313378S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e04c2533-43f1-4b1a-97a9-9d55ad465f31"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:21 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b0d48989-692a-43b8-a252-fda5eb1d8547"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5225346S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4db80970-21f8-488f-a5a7-ee5c4c9137d8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:21 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fc4ec600-9da0-4719-b9c7-93a9f6107e47"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.7256683S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e3d4bd19-3e09-4c6a-98bc-202d92a91519"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:21 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "da7ed01c-094b-40a2-997f-55c143eb1f10"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.8945299S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f24518e3-f169-4c51-a24c-d41d328e566d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:21 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1c6652af-a683-4336-ab7d-d25665af106c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.0850431S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e14fc8af-c6d8-49b3-96da-cad3d11ff178"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:21 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "812222c4-241e-416b-8a5a-637661658ca0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.272525S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d0f46f78-e174-4f9d-b120-4664f31985b3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6b265f02-d776-4112-8bcb-8ddaa6d2d78e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.4600291S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d8959d96-7613-46e3-8315-aa0a21d0ffc6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0c9ac787-d481-4095-b055-f1f4e49b955d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.6594641S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f2721aa7-5828-46be-a068-0f05109ea3b6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "39418b89-b2eb-45f0-b671-e45571f43ee1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.8506614S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "9b06f574-3a99-43a5-bf49-a09e97c03751"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "61d18760-32ba-43b9-9c86-9b5012869f43"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.049856S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f21fd6cb-50e3-4a29-9a4c-29ebc5d45897"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "15f34de6-5a15-4fbc-961a-478768ea3395"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.2219901S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "348dddd0-a18f-4aa1-b4c3-ecd38197b02e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2d7b0221-254b-47f0-93a7-9419b769b142"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.397548S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5299f0b0-47e1-4ca6-8832-89a5b8e24bf8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:23 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "37be2b8d-066d-4e2b-9398-58dfbcb97b90"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.5850517S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0c56c87b-e3fc-4861-beb7-b753443fb1ea"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:23 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2e629dcf-bde4-47f1-9179-8aa338127aa6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.7725746S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c0255343-bc91-4c28-94ed-db3543d7b408"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:23 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2302ec0c-a53e-4d80-b9c8-438df49c21f6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.9600766S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d0af9398-a64d-4248-9006-6d2838c812a3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:23 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bc6c6bcf-92cb-4366-a285-603e9afe959b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.1631872S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0eb65da3-9ff2-47fb-be83-6fe83ed5d223"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:23 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5af127a5-95b4-4709-8cef-d03cefe1de91"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.3506904S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d0bfef12-2a20-4567-9325-a2bcaf3f71e2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:24 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cedb1d7d-b177-4434-b159-0b7f24dee15c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.5382138S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e42554ce-724b-4d01-98d7-3c68309bbd24"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:24 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cfd0d6f5-8b11-4043-a8cd-5444b0bcebf3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.7413419S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a3eaad1c-5081-428f-a541-e70ae5fb823b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:24 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "583b83b3-e9de-4cc0-8bae-8aacda9f7b00"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.944453S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3322eace-d538-4d1b-a6c3-cc724f808b70"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:24 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "61dc2257-ee0a-4e38-9caa-93f24b12ec5f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.178833S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0ca80a59-e4d0-4082-a15e-c07f3422702e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:24 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "81602da1-1ae0-4b64-af4a-9f3e42d5dfe3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.3819804S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "eb95141d-978b-42ba-9825-4e817dfb98f2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:25 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "513ac6aa-e814-4f4f-ab28-b3c5e474515b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.5538643S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "71ce94fa-76df-43b9-be50-a1b6eb11e828"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:25 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bfd0a1e2-624f-47b1-ad1b-7a51a05ea53e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.7413625S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a48ff65f-7f8f-449c-97c3-ff3a6960d718"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:25 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "81c47489-2823-4b82-9048-23f753d95ca7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.9251578S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b1ab48b9-0a53-49e6-89b9-83f923a7b148"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:25 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bbfb6b4f-f4f9-473e-acea-a97395834ce5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.1163515S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ca1870e6-c0dd-415c-b1d6-5b4aca075f37"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:25 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a90dca87-df27-448d-a18f-bea0f78b7807"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.2882294S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "56fa5978-7a9e-4562-b194-1a0f9eb119f6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:25 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f7c71baf-3f43-4688-a501-29313148c3c3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.4720431S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d7dcedb8-aa37-4603-bbda-ab3859fd8855"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:26 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "78f2cd78-dd17-42af-a6d0-25775f6442a3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.6595265S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "06ea69c8-3ec1-48e5-a281-aa821ab4e5a3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:26 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cbd5186a-8ba6-4c4e-8241-855909375205"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8470476S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f37a9a84-951c-4075-b94d-d6ae887f0db3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:26 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5f017ef3-cc27-4c67-afa7-c4097378cbcc"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.0189071S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b0fafa54-bb1d-4afc-a093-b0172b7bd497"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:26 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "13082149-3d6b-47af-a942-4cc0d1f9f461"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.2064299S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d81d1d4b-2a6f-4e40-bf2a-98de64aa5e42"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:26 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a6d90824-a8d1-4047-853e-ed6e980644f7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.3936805S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "fc560f05-262a-46ce-bdba-ae73a082148f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:27 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a39bc8ff-148d-4967-a07a-ec40922d3f38"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5695046S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e3635373-f2d6-41c2-ba6f-6d39a29ace71"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:27 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "10e1589a-63aa-4415-9529-7af616498eea"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.7570083S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ba80c998-949a-46d1-9628-d2a4f4801c26"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:27 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3f9d2953-5431-4a99-9291-3c01bd0ca1bd"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9601548S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6f784b2e-9c75-4bbd-8734-20f284a67e33"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:27 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "63bd9018-fb71-4e73-b031-807faeec8523"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.1476692S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a315f7f2-2d33-4dbf-8c68-f440147fac9d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:27 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "68d85094-a191-470a-9eb7-b68b0c7776b7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.3314266S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d5310cd0-e8d2-40ba-bd74-288ce62a9c4c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:28 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3aea20c6-e04e-4000-818e-ddc54a2737af"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.6007762S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c88e01c8-ed65-4073-93c8-70dc2ba445ab"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:28 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1e5ec7c2-a0a3-4989-91e0-a4a58252bbbd"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.8158111S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1509267b-c93b-4840-94fe-5c52eabbd276"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:28 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2e3dc0b2-4cb7-4924-8ee2-0e7df296a2d4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.0033315S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "08a12287-a073-4130-86a0-d323346c86d7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:28 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "35a8fb16-b0c6-4274-8191-e2535bc58476"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.1789314S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "af2a62f1-dc51-44ba-8584-7589ce386dea"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:28 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e4ddf4f9-71de-4962-9810-3fa6ca44f3f1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.4133165S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c9b499f1-8104-46ee-85c8-baee632dbf29"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:29 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "eb36ffe8-1c86-4890-8378-2a8397bd7da1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.5968733S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d1565694-bac9-4912-8a2e-296f4164eb76"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:29 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4525aa40-6283-4ab5-b682-b40f933ef95d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.7882983S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c05426db-e466-4a19-abf7-58022f93c8e3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:29 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "797c2b07-0fdd-4522-8166-4155163d8ad6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.9877013S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1cc37185-fbea-4c13-b4e7-15a58d8a5a99"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:29 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "33f2e43a-5f46-455a-982b-96b62802c179"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.1945567S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "cca99140-5059-4fb2-ba92-97b9c7073ab9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:29 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ca2aee78-387a-44c9-a320-df69ff4c28f4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.3820604S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "cdf87c78-c3d4-42bf-a38d-fa59b61acb16"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:30 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "229b34a4-6b62-490b-af3a-876277d6a2c7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.5539379S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1f2d869c-bdf8-497b-b568-733f8c25085b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:30 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "da9dea5e-517c-48be-a7b2-8dfdccc1f634"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.8508393S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3eec6b3c-a970-4af5-8e58-9c021dc6010f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:30 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bd06140a-ea65-4911-9160-e4dc31e2a2a8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0695931S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "fa8045c0-d8c2-4502-a8f7-250a65ed906a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:30 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d9c73985-36f7-41bd-b7c3-f501d3e8d0dd"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ca30b103-81d9-4166-aee6-876751412b6b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:30 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "da6ce92e-3837-4486-9d02-33442f0ec0b4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "378ed2e4-baed-4a84-857c-0b00bb4de7fd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:31 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6ae05d7e-2393-4a4f-985f-59ebf722aaef"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "cfc95a75-230d-4f39-82b0-4d5123c7d568"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:31 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "36f806d7-92f9-4fac-b8ff-69814199ee20"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2bbe7f9e-be15-42ff-98c4-c9639bcfa535"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:31 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3f3b2add-e4ef-4118-b017-75cfd9b8f48e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "58381828-d2bb-4004-b164-abf64a98076f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:31 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e5455b4f-0552-44ce-85ec-5b38b95a513e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7226389b-0c75-43e4-bb2e-9c8683d653ad"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:32 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cb1fbe6b-449c-45e3-9121-b7208f1100b4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e93abd6b-f8ef-4a67-9754-66f392418857"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:32 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "36a2087a-bed1-4aac-bbb7-c683624143d1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "46d64c66-a5be-4e1d-b07c-f6d244947601"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:32 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "384119ca-9f2e-41b8-8903-bb3fd6ff4420"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "969cab39-91d0-48aa-8bab-3a8306387280"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:32 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bd672931-8f5a-423c-a4e1-37f966f2cff6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7ffb125c-474f-4321-89a8-391d287d5b5a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:32 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "10041751-e143-4af3-a9d8-5327ea8fee87"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ce4e24b5-7309-402f-a2e4-d31a869aaf46"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:32 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6b3883b1-cf33-4b0f-9f1c-828e869d8e45"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2e7b8854-fcaf-4abc-b5a4-2feb8e2436e5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:33 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "da05ed69-8cd6-4d12-bc2d-86739e08c577"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c45623ca-01a7-4296-bfa9-bbf6b6f00370"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:33 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b5e5ade7-1c8a-41aa-8185-1e1c760bb2fc"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6c2e8f11-32a1-49e4-aeb7-4f8a8a4c99a2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:33 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "412fd9de-9e70-401b-ab32-b7e1ce975006"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c33a6714-094c-4a4c-bbf5-fc9614a1090f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:33 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1c8a2184-3fd8-4562-b403-e9eb8ba58ca2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "93d8eb77-36e0-4620-bafc-febaa2a7dd6e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:33 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "dbe85bd1-fbe5-40de-88f3-5c2ca71b3817"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2833c5fa-2eb7-47f2-ab75-3680b846c330"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:34 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3c7d0c75-5a90-4dff-824c-c10c152260be"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ebe2c69e-29dd-484f-a662-d97fc89b80a5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:34 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "33f185f5-bb22-4a2c-b41d-3c2a36faad66"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6cc415e6-e74a-44fa-a57a-ae4ae9f2309b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:34 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2b53b0db-2c15-490f-ac5d-2f620b4a8037"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0.0694332S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c0b242c4-c7fb-4edc-8e5b-eead9e67c79a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:34 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a17958f1-5be7-4177-9e86-5547f04f8449"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0.272543S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "82167215-d39c-4c1a-8b18-aaae7c0cb602"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:34 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ab0da2c2-260a-47ff-bbd8-b244f8b67d0f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0.475672S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b58d61b0-4c45-4ddf-8fe6-29258713d517"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:35 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f30b9faf-914c-4a0b-aa11-72409fbdd23b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0.6788206S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "270c175a-1a8d-426f-8e98-64f94fee0233"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:35 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f7770ef6-6148-488d-a263-6bab138a552f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT0.8819599S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "415dee1e-5dbb-46b2-8b7d-91bf326c18cd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:35 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "98c8620d-0ad3-4e7f-ac30-b0040120abf5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT1.0694341S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "70932d12-fe6c-4180-8013-7cfe4b0cb594"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:35 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "763666d5-557f-4781-9bbd-65d1f597f974"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT1.2688137S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "264ddf1f-b842-46fb-9218-a2f511a12b8f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:35 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8a60f342-aca4-4921-bba3-ccc8392c0ad3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT1.8819766S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "209a7866-d287-4919-8d4c-1a59c91f13f8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:36 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4d3c7b8d-1f39-47e1-9dee-98434e2635e4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT2.1286545S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0607ed49-695b-4b00-8c77-629e5cdf1394"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:36 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cb02603b-5a34-4e90-b1c8-dc87871688e1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT2.3157339S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8f5eed1c-a509-48e6-8a4a-b18a7f92f56a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:37 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b8f4f2d5-ab9b-4b8b-8373-9157201eb1f0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT2.5499273S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a399d95a-ae9a-457b-a71d-b4f492987b95"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:37 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2618840b-12ec-4b2c-8381-fc1b512d2dab"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT2.7530594S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c548d225-94f8-4b44-a85f-a377fa82e7ef"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:37 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fd3299b1-83cd-41bb-9dc2-6242076b32fb"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT3.003235S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6f0e6e94-4f89-4e67-826e-69d4115468e2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:37 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "759bf125-92f7-4d64-be67-f02c2de2b911"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT3.1788694S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4dbab8e1-ba8b-4592-a466-d66f2086e1df"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:37 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cb2b3584-b878-44b0-828d-1eb1caf6cb0a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT3.3626147S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "adff9823-b34c-48ee-97f4-565e7fd47491"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:38 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1932e3a3-e9df-4eb9-8a0d-c6373da3e94d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT3.5695033S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2c667078-c1f9-49f0-a43c-b9e443b65e9e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:38 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b60dcf77-4e6a-4a2d-98e8-87b6bf341778"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT3.7882384S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5ffc1418-2589-4a90-8631-d1e801ac078c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:38 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "65eaab03-ef6b-4253-864c-bb7b07c1f3e1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT3.9913905S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ec62ab5a-b04d-40dd-98df-9ff42148daef"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:38 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fe341f6a-125a-4193-9790-e6a4bd401403"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT4.1788702S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6ce13ba7-6184-40bd-917a-a5d1d66799df"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:38 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a65006bd-ee43-41f1-8940-b941b6b7ca13"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT4.3663936S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3b1a0106-03f4-4b44-ba57-4c510c6ef3a8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:39 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ef61e5a2-5d32-481a-95a0-837c28cefdca"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT4.5695316S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "49c6b346-24a7-4ce3-8f89-a62ba92b5dba"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:39 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "04b83974-8dc5-47ef-ae09-6e168aadc9bb"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT4.7532615S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "659c8953-1824-42cd-beb6-2125fbc88904"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:39 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "93f8d9de-0503-4dd4-820a-c8b181c40fbe"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT4.9562286S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "86d36ba8-c766-4f19-a4d3-8c442f6c5e49"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:39 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "edfe1b3a-1c20-4cdc-bd05-2663425e967a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT5.4132883S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3a87e45d-274c-475e-944c-b1684842e58f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:40 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f60776ed-5b5a-4f7b-8eb2-401834ac292d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT5.6007929S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a44b2320-57e5-4c4e-88cd-78d48d64ddc2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:40 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c182bac9-d5af-49de-af6d-43dea01c4390"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT5.7843818S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "35d03468-dfd5-45e0-915c-bca02f298a6e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:40 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9b0b1a46-1fdf-42b9-996d-8d34a06c51c7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT6.0539268S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "76ab3517-cdaa-40b6-80c1-af4e53498d3b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:40 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "162885c8-6b43-48ae-abde-14384636ace3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT6.2376413S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "9e11c48b-406f-468b-9bf8-cad0b921aa2a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:40 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c613f6f4-9e21-45d9-b1a3-121f99b0aa92"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT6.4289145S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bad3f073-0ca9-4810-9f7f-37b8469558ff"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:41 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "59cbe5f4-d615-4065-9085-8f99b377efb2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT6.6320431S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "514c2ce3-b1fe-44b2-a387-4e9bd566bbd8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:41 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c0483ac2-2d98-4ed4-b9ce-11df454114ae"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT6.8351729S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d611bdb6-b5a0-4652-b4a7-e2aa9b56cb12"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:41 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "51b3dc04-24a0-45b0-882a-5b8484b44f5d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT7.0189014S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "375a02ac-d0e1-4673-a6e0-ce2f6709749f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:41 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/eff775d0-6e57-4af0-8b46-fd458af1f268?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWZmNzc1ZDAtNmU1Ny00YWYwLThiNDYtZmQ0NThhZjFmMjY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ef1530ed-38ef-4456-8e2f-bf4f6085dad1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"eff775d0-6e57-4af0-8b46-fd458af1f268\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"startTime\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"endTime\": \"2018-03-07T09:33:42.0764573-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-07T09:33:15.9039188-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-07T09:33:16.060194-08:00\",\r\n \"details\": \"Compilation:b3e404b8-c7e5-48b6-a96a-3044b3ce80a8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1541506-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.1697326-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b6e84dc6-29ab-475c-af7f-15a418c6bc3f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-07T09:33:31.185398-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-07T09:33:35.1385583-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-03-07T09:33:42.0764573-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"b6e84dc6-29ab-475c-af7f-15a418c6bc3f\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps2251.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/07/17/33/eff775d0-6e57-4af0-8b46-fd458af1f268/algebra.xml\",\r\n \"yarnApplicationId\": 278832,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.0939566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015582S\",\r\n \"totalRunningTime\": \"PT6.937899S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "aeb64e2b-93b9-4995-aa0a-63c557ccea93"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:41 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeAnalytics/accounts/ps5869?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTg2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2ac83a86-6e12-4057-8f7f-9efe29a591e6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "708df753-f739-48b2-9cdb-dee8faa8edca"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "816003bd-254d-40a1-a1c3-842217e86c34"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180307T173346Z:816003bd-254d-40a1-a1c3-842217e86c34"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:45 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6054/providers/Microsoft.DataLakeStore/accounts/ps2251?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjA1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "98e6b3a2-0038-4ea0-8b57-27b5b55bd206"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "6eb1361b-a6d7-4874-be8f-82e1090ad2a3"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "841d66c8-fefd-4b8d-bc80-2fb9e57ab701"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180307T173351Z:841d66c8-fefd-4b8d-bc80-2fb9e57ab701"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:50 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6054?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNjA1ND9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "f552dafc-b461-4df0-9766-483513f8874c"
- ],
- "x-ms-correlation-request-id": [
- "f552dafc-b461-4df0-9766-483513f8874c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180307T173352Z:f552dafc-b461-4df0-9766-483513f8874c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:52 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwNTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwNTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd05UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-request-id": [
- "98a32010-9afe-45b7-8aee-5f71a266ab9b"
- ],
- "x-ms-correlation-request-id": [
- "98a32010-9afe-45b7-8aee-5f71a266ab9b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180307T173353Z:98a32010-9afe-45b7-8aee-5f71a266ab9b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:33:52 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwNTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwNTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd05UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-request-id": [
- "99b5c31d-10bb-445b-b94b-eb933d08c30e"
- ],
- "x-ms-correlation-request-id": [
- "99b5c31d-10bb-445b-b94b-eb933d08c30e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180307T173408Z:99b5c31d-10bb-445b-b94b-eb933d08c30e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:34:08 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwNTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwNTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd05UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-request-id": [
- "1c6340cc-564e-43e7-8907-d6324557ae5d"
- ],
- "x-ms-correlation-request-id": [
- "1c6340cc-564e-43e7-8907-d6324557ae5d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20180307T173423Z:1c6340cc-564e-43e7-8907-d6324557ae5d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 07 Mar 2018 17:34:22 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwNTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwNTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd05UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -8062,16 +2356,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14974"
],
"x-ms-request-id": [
- "850e3cc9-83d2-43cd-b9ce-39478c1dc5b8"
+ "bbefe68a-3958-4988-b69b-3341422ffed7"
],
"x-ms-correlation-request-id": [
- "850e3cc9-83d2-43cd-b9ce-39478c1dc5b8"
+ "bbefe68a-3958-4988-b69b-3341422ffed7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T173438Z:850e3cc9-83d2-43cd-b9ce-39478c1dc5b8"
+ "AUSTRALIAEAST:20180607T133121Z:bbefe68a-3958-4988-b69b-3341422ffed7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8083,7 +2377,7 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 17:34:38 GMT"
+ "Thu, 07 Jun 2018 13:31:21 GMT"
]
},
"StatusCode": 200
@@ -8091,18 +2385,18 @@
],
"Names": {
"": [
- "ps6054",
- "ps5869",
- "ps2251"
+ "ps3628",
+ "ps4753",
+ "ps5726"
],
"jobTest02": [
- "dd64db15-3099-4215-8bd6-3b28940cc360"
+ "472bbbe7-0df8-4a39-bb72-7a691c0661b9"
],
"jobTest04": [
- "eff775d0-6e57-4af0-8b46-fd458af1f268"
+ "2656cd63-0e36-4b3f-b9cc-8bd3c514de28"
]
},
"Variables": {
- "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb"
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaJobRelationships.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaJobRelationships.json
index c5c0a51ed772..dad627f9d7df 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaJobRelationships.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestAdlaJobRelationships.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,22 +28,25 @@
"1199"
],
"x-ms-request-id": [
- "c195cfc5-2281-43ac-a416-877001042eb5"
+ "183b2f97-e1e3-4f6a-b75e-3be3c6792569"
],
"x-ms-correlation-request-id": [
- "c195cfc5-2281-43ac-a416-877001042eb5"
+ "183b2f97-e1e3-4f6a-b75e-3be3c6792569"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022404Z:c195cfc5-2281-43ac-a416-877001042eb5"
+ "AUSTRALIAEAST:20180607T124347Z:183b2f97-e1e3-4f6a-b75e-3be3c6792569"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:04 GMT"
+ "Thu, 07 Jun 2018 12:43:46 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14999"
],
"x-ms-request-id": [
- "f41bf74b-1c0b-4647-bece-a05a19ee5d12"
+ "1a28b0e9-db16-4e25-a119-b6e223c2b811"
],
"x-ms-correlation-request-id": [
- "f41bf74b-1c0b-4647-bece-a05a19ee5d12"
+ "1a28b0e9-db16-4e25-a119-b6e223c2b811"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022404Z:f41bf74b-1c0b-4647-bece-a05a19ee5d12"
+ "AUSTRALIAEAST:20180607T124348Z:1a28b0e9-db16-4e25-a119-b6e223c2b811"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:04 GMT"
+ "Thu, 07 Jun 2018 12:43:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5201?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTIwMT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9478?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTQ3OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "ce22603a-378e-423d-b308-0c790086e2b2"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201\",\r\n \"name\": \"ps5201\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478\",\r\n \"name\": \"ps9478\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,49 +142,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "0aa28bde-a0a9-4980-a12b-f3d8e6bd4982"
+ "75e793db-b44f-453c-86ab-942aa471d573"
],
"x-ms-correlation-request-id": [
- "0aa28bde-a0a9-4980-a12b-f3d8e6bd4982"
+ "75e793db-b44f-453c-86ab-942aa471d573"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022414Z:0aa28bde-a0a9-4980-a12b-f3d8e6bd4982"
+ "AUSTRALIAEAST:20180607T124401Z:75e793db-b44f-453c-86ab-942aa471d573"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:14 GMT"
+ "Thu, 07 Jun 2018 12:44:01 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM4ODgzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0afdbd86-e2c5-461a-b709-4183f448ad12"
+ "ca8fac2f-9d59-468d-a3c3-13758981c53a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps9971' under resource group 'ps5201' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps8883' under resource group 'ps9478' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -187,43 +205,46 @@
"gateway"
],
"x-ms-request-id": [
- "658e8de4-eb8a-4a5a-b457-5d47ca32a6ab"
+ "3b05d0bb-7ec6-460c-abe7-0dfc95047ebf"
],
"x-ms-correlation-request-id": [
- "658e8de4-eb8a-4a5a-b457-5d47ca32a6ab"
+ "3b05d0bb-7ec6-460c-abe7-0dfc95047ebf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022415Z:658e8de4-eb8a-4a5a-b457-5d47ca32a6ab"
+ "AUSTRALIAEAST:20180607T124403Z:3b05d0bb-7ec6-460c-abe7-0dfc95047ebf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:14 GMT"
+ "Thu, 07 Jun 2018 12:44:03 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM4ODgzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9971.azuredatalakestore.net\",\r\n \"accountId\": \"24597c0d-085d-4435-a1da-1e3a814a9a0a\",\r\n \"creationTime\": \"2017-12-07T02:24:21.9610685Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:24:21.9610685Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"0999c6b1-a195-4f64-ae48-dae9e3dbd91e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971\",\r\n \"name\": \"ps9971\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8883.azuredatalakestore.net\",\r\n \"accountId\": \"dbe1819c-c82e-472b-83c6-d5bcc6b1b4fa\",\r\n \"creationTime\": \"2018-06-07T12:44:12.8343329Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:44:12.8343329Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"14e536e7-ebab-4b39-a4fa-d93e54ca9c24\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883\",\r\n \"name\": \"ps8883\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -235,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "37d9e730-e123-4e36-a1e3-2facc9e6b0fb"
+ "f40cc8d6-a81c-49de-8c0e-162dfa307c26"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14987"
],
"x-ms-correlation-request-id": [
- "8df914cb-f4f4-4256-bdd8-5fd2e0ca31a8"
+ "e1732743-44c9-4da2-8a2c-d537654bf6f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022450Z:8df914cb-f4f4-4256-bdd8-5fd2e0ca31a8"
+ "AUSTRALIAEAST:20180607T124446Z:e1732743-44c9-4da2-8a2c-d537654bf6f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:49 GMT"
+ "Thu, 07 Jun 2018 12:44:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -274,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM4ODgzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f723d841-af75-4b78-937a-79ea5e82891f"
+ "2c90e1f8-5df3-47f8-9bac-ed3497e3fadd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9971.azuredatalakestore.net\",\r\n \"accountId\": \"24597c0d-085d-4435-a1da-1e3a814a9a0a\",\r\n \"creationTime\": \"2017-12-07T02:24:21.9610685Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:24:21.9610685Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"0999c6b1-a195-4f64-ae48-dae9e3dbd91e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971\",\r\n \"name\": \"ps9971\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8883.azuredatalakestore.net\",\r\n \"accountId\": \"dbe1819c-c82e-472b-83c6-d5bcc6b1b4fa\",\r\n \"creationTime\": \"2018-06-07T12:44:12.8343329Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:44:12.8343329Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"14e536e7-ebab-4b39-a4fa-d93e54ca9c24\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883\",\r\n \"name\": \"ps8883\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -307,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "3f2bad5c-fbed-41fa-8619-ea462928da12"
+ "2e794743-8646-4c59-92cb-7c99ca3f7b6e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14986"
],
"x-ms-correlation-request-id": [
- "71539f1e-c7dc-4063-a0a0-8261456b9a8d"
+ "d68159b7-816d-4b06-b56f-11e96506119b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023056Z:71539f1e-c7dc-4063-a0a0-8261456b9a8d"
+ "AUSTRALIAEAST:20180607T125347Z:d68159b7-816d-4b06-b56f-11e96506119b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:56 GMT"
+ "Thu, 07 Jun 2018 12:53:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -346,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM4ODgzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "d5b303fe-6809-4251-8301-5c313c61140b"
+ "653ad740-91a6-4685-b6c2-1ea5e745663a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"24597c0d-085d-4435-a1da-1e3a814a9a0a\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971\",\r\n \"name\": \"ps9971\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"dbe1819c-c82e-472b-83c6-d5bcc6b1b4fa\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883\",\r\n \"name\": \"ps8883\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -388,37 +403,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/dbe1819c-c82e-472b-83c6-d5bcc6b1b4fa0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "2d001ead-ce4c-4247-a9bd-e1b4114eed94"
+ "958e568d-467d-470d-9c0d-7916f8be22b5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "58381fe3-3fbd-44f9-946f-3fe6a06fcf3a"
+ "dbf471c0-3fc0-4b81-80e9-afa50233709e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022419Z:58381fe3-3fbd-44f9-946f-3fe6a06fcf3a"
+ "AUSTRALIAEAST:20180607T124411Z:dbf471c0-3fc0-4b81-80e9-afa50233709e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:18 GMT"
+ "Thu, 07 Jun 2018 12:44:10 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -433,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/dbe1819c-c82e-472b-83c6-d5bcc6b1b4fa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2RiZTE4MTljLWM4MmUtNDcyYi04M2M2LWQ1YmNjNmIxYjRmYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -460,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f574bf52-5839-42f9-a546-4741e232f998"
+ "7222de44-f3fe-4bc7-836c-30b57b9adb36"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14990"
],
"x-ms-correlation-request-id": [
- "af04864d-229f-44e8-bfcc-17c6ae24bd31"
+ "622c997e-3902-4dde-879a-508a5a3073f2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022419Z:af04864d-229f-44e8-bfcc-17c6ae24bd31"
+ "AUSTRALIAEAST:20180607T124422Z:622c997e-3902-4dde-879a-508a5a3073f2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:19 GMT"
+ "Thu, 07 Jun 2018 12:44:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -499,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/dbe1819c-c82e-472b-83c6-d5bcc6b1b4fa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2RiZTE4MTljLWM4MmUtNDcyYi04M2M2LWQ1YmNjNmIxYjRmYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -526,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e4b46607-8426-42bd-87b8-f9e43cabfc7e"
+ "b5c55fa3-213c-4cb8-a348-f7ea8b364ccf"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14989"
],
"x-ms-correlation-request-id": [
- "00ff2b12-6fbe-45c7-8fdb-8605b60ddd30"
+ "9709eb71-8b8c-4b64-92af-0de5f9eddd44"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022420Z:00ff2b12-6fbe-45c7-8fdb-8605b60ddd30"
+ "AUSTRALIAEAST:20180607T124434Z:9709eb71-8b8c-4b64-92af-0de5f9eddd44"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:19 GMT"
+ "Thu, 07 Jun 2018 12:44:33 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -565,22 +571,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/dbe1819c-c82e-472b-83c6-d5bcc6b1b4fa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2RiZTE4MTljLWM4MmUtNDcyYi04M2M2LWQ1YmNjNmIxYjRmYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "22"
],
"Content-Type": [
"application/json"
@@ -592,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "eb1fcc0c-f297-4eb1-87ee-88165f657565"
+ "6c54ef3f-ebf0-4369-94a2-0b3eee239030"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14988"
],
"x-ms-correlation-request-id": [
- "7427913d-73d9-48f0-a059-c40d2ade5628"
+ "9ec050fd-7dfc-48bd-aab4-4f3b7ff6d34c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022421Z:7427913d-73d9-48f0-a059-c40d2ade5628"
+ "AUSTRALIAEAST:20180607T124445Z:9ec050fd-7dfc-48bd-aab4-4f3b7ff6d34c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:21 GMT"
+ "Thu, 07 Jun 2018 12:44:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -631,25 +634,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTM2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96c3930b-ae1d-4123-a8a3-5e72955c1576"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1369' under resource group 'ps9478' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "153"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -657,65 +666,59 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "6661779f-7923-460b-a9c3-52b31072cc77"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "x-ms-request-id": [
+ "362eb7a9-81da-4f89-b2c5-bda0e4b1f400"
],
"x-ms-correlation-request-id": [
- "0d8b6258-b3bb-4cf5-9c87-dbe01ed58949"
+ "362eb7a9-81da-4f89-b2c5-bda0e4b1f400"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022422Z:0d8b6258-b3bb-4cf5-9c87-dbe01ed58949"
+ "AUSTRALIAEAST:20180607T124448Z:362eb7a9-81da-4f89-b2c5-bda0e4b1f400"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:21 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:44:47 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTM2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1773106e-7100-4533-ad96-0167b11d06a5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1369' under resource group 'ps9478' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "153"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -723,62 +726,50 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "eb5d501b-038e-414f-8367-3e7434e25e96"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "x-ms-request-id": [
+ "16fa9068-b0de-46d5-afe4-bec6e3016734"
],
"x-ms-correlation-request-id": [
- "72143808-b791-4738-8754-4424fa7bbef4"
+ "16fa9068-b0de-46d5-afe4-bec6e3016734"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022422Z:72143808-b791-4738-8754-4424fa7bbef4"
+ "AUSTRALIAEAST:20180607T124449Z:16fa9068-b0de-46d5-afe4-bec6e3016734"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:22 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:44:48 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTM2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps8883\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps8883\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1369.azuredatalakeanalytics.net\",\r\n \"accountId\": \"4a8b297a-12e1-48d7-91d2-d2509037c841\",\r\n \"creationTime\": \"2018-06-07T12:44:54.9378388Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:44:54.9378388Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369\",\r\n \"name\": \"ps1369\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -790,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b9a1d614-5bec-4f0e-beab-15268e13f09b"
+ "edb4c783-bf94-4736-bdd2-abf1066024b0"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "36b41ee9-63de-4395-a1cb-713e4f407a48"
+ "07599133-272d-4dae-b1ee-2016c59e8b8f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022423Z:36b41ee9-63de-4395-a1cb-713e4f407a48"
+ "AUSTRALIAEAST:20180607T124529Z:07599133-272d-4dae-b1ee-2016c59e8b8f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:23 GMT"
+ "Thu, 07 Jun 2018 12:45:29 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -829,22 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTM2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c62c4905-29a3-4a9e-9782-9588df218987"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps8883\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps8883\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1369.azuredatalakeanalytics.net\",\r\n \"accountId\": \"4a8b297a-12e1-48d7-91d2-d2509037c841\",\r\n \"creationTime\": \"2018-06-07T12:44:54.9378388Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:44:54.9378388Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369\",\r\n \"name\": \"ps1369\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -856,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a16e667e-436d-47ce-9751-8bc043907718"
+ "28bab349-3454-4147-95d8-1d8f0262a8e3"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14993"
],
"x-ms-correlation-request-id": [
- "546ab589-c402-489f-9fa3-856808313ec0"
+ "43891c45-ee9d-4833-82b7-86ecb03d3f29"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022424Z:546ab589-c402-489f-9fa3-856808313ec0"
+ "AUSTRALIAEAST:20180607T124531Z:43891c45-ee9d-4833-82b7-86ecb03d3f29"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:23 GMT"
+ "Thu, 07 Jun 2018 12:45:30 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -895,22 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTM2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f99c918c-56e2-4426-aebb-d9af41a1d8c0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps8883\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps8883\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1369.azuredatalakeanalytics.net\",\r\n \"accountId\": \"4a8b297a-12e1-48d7-91d2-d2509037c841\",\r\n \"creationTime\": \"2018-06-07T12:44:54.9378388Z\",\r\n \"lastModifiedTime\": \"2018-06-07T12:44:54.9378388Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369\",\r\n \"name\": \"ps1369\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -922,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7207cfe4-1369-4f9f-b870-901c9e79a4c8"
+ "d370a14a-8cff-4c8b-9d22-8b2b9710dc20"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14999"
],
"x-ms-correlation-request-id": [
- "0cfad7a3-95b8-4531-a94a-89b38e5135cf"
+ "bfe0d72e-b612-4c0b-a63f-a18790bcec7d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022425Z:0cfad7a3-95b8-4531-a94a-89b38e5135cf"
+ "AUSTRALIAEAST:20180607T125327Z:bfe0d72e-b612-4c0b-a63f-a18790bcec7d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:24 GMT"
+ "Thu, 07 Jun 2018 12:53:26 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -961,22 +955,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTM2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps8883\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps8883\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "198"
+ ],
+ "x-ms-client-request-id": [
+ "82d74c1c-eeac-4c33-af67-e5f5055dafde"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps8883\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps8883\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4a8b297a-12e1-48d7-91d2-d2509037c841\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369\",\r\n \"name\": \"ps1369\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "487"
],
"Content-Type": [
"application/json"
@@ -987,32 +993,38 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/4a8b297a-12e1-48d7-91d2-d2509037c8410?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "693d1062-f27f-43b9-8805-09e48e977076"
+ "06b2599d-9339-46cd-9aeb-59a5e0802400"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "91fb43fa-2b34-4a79-b138-c5f8ad37ead9"
+ "21687dd5-aac2-491b-83c4-f6f67ac6aa2b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022425Z:91fb43fa-2b34-4a79-b138-c5f8ad37ead9"
+ "AUSTRALIAEAST:20180607T124454Z:21687dd5-aac2-491b-83c4-f6f67ac6aa2b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:25 GMT"
+ "Thu, 07 Jun 2018 12:44:53 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1024,19 +1036,19 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/4a8b297a-12e1-48d7-91d2-d2509037c8410?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80YThiMjk3YS0xMmUxLTQ4ZDctOTFkMi1kMjUwOTAzN2M4NDEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1054,31 +1066,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ac03867c-b733-4197-adff-f587a3468778"
+ "022afa8c-73b3-4eb7-97de-301ccfcc9f46"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-correlation-request-id": [
- "90c8c681-0263-4c5a-9465-bc960c3a6cb9"
+ "241bc607-2f67-47f8-941b-5184077db277"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022426Z:90c8c681-0263-4c5a-9465-bc960c3a6cb9"
+ "AUSTRALIAEAST:20180607T124505Z:241bc607-2f67-47f8-941b-5184077db277"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:25 GMT"
+ "Thu, 07 Jun 2018 12:45:04 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1093,16 +1102,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/4a8b297a-12e1-48d7-91d2-d2509037c8410?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80YThiMjk3YS0xMmUxLTQ4ZDctOTFkMi1kMjUwOTAzN2M4NDEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1120,31 +1129,28 @@
"no-cache"
],
"x-ms-request-id": [
- "02adb12e-1102-4b39-a083-d2aa4e29ebd1"
+ "e089897d-60a7-42ab-b05a-fbeda2e92ec8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14996"
],
"x-ms-correlation-request-id": [
- "7243f8bb-cf8e-4c58-a878-1bc24097488e"
+ "f5b64deb-11c7-47e5-91b9-9f62c4ecab5d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022427Z:7243f8bb-cf8e-4c58-a878-1bc24097488e"
+ "AUSTRALIAEAST:20180607T124516Z:f5b64deb-11c7-47e5-91b9-9f62c4ecab5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:26 GMT"
+ "Thu, 07 Jun 2018 12:45:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1159,22 +1165,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/4a8b297a-12e1-48d7-91d2-d2509037c8410?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80YThiMjk3YS0xMmUxLTQ4ZDctOTFkMi1kMjUwOTAzN2M4NDEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "22"
],
"Content-Type": [
"application/json"
@@ -1186,7 +1192,7 @@
"no-cache"
],
"x-ms-request-id": [
- "97bfa92e-bf73-4ef2-8ef8-21b15a2c9fde"
+ "843cc27a-b2cd-405c-9252-6db998f683c6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1195,22 +1201,19 @@
"14995"
],
"x-ms-correlation-request-id": [
- "a13822f4-746f-458d-a973-957c6c8b1661"
+ "4f701ab5-ca44-4afb-86bb-fa66dd46b3b5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T022427Z:a13822f4-746f-458d-a973-957c6c8b1661"
+ "AUSTRALIAEAST:20180607T124528Z:4f701ab5-ca44-4afb-86bb-fa66dd46b3b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:27 GMT"
+ "Thu, 07 Jun 2018 12:45:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1225,4930 +1228,16159 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n },\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "523"
+ ],
+ "x-ms-client-request-id": [
+ "4e6b7b54-5397-4341-9856-248076563a3f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "44a12fbf-4add-47ce-a9fb-d9c8e69716aa"
+ "876760fa-06ce-4674-8a5c-29780cab77f7"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "d7018bb1-1309-4c4f-a1a3-27588d786fd2"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022428Z:d7018bb1-1309-4c4f-a1a3-27588d786fd2"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:27 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:32 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6155b5a-d53a-4e07-ba91-5fbdcf528b86"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.5624229S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "af29adcc-bfec-4513-a158-b9fd45470eb0"
+ "0b156057-5fa2-4f50-a873-62a533ab79ad"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
- ],
- "x-ms-correlation-request-id": [
- "8095c56e-9e9e-4292-ad46-f1d9f3aab038"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022429Z:8095c56e-9e9e-4292-ad46-f1d9f3aab038"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:29 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:33 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31ab94e3-e91f-4f8c-bf22-9fc54939dd2b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.2520172S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "ae561b24-f9e3-43bd-8245-bcb3ca26f0fd"
+ "f649da3a-8614-404d-9955-5a43df906d58"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "34c025d2-8efc-4f0b-9956-fb5af413de21"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022430Z:34c025d2-8efc-4f0b-9956-fb5af413de21"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:29 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:34 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ce6d16be-b58d-4fca-9a0f-16c5bcbf92fd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.8124404S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "b6871450-cc77-4301-b945-74af2a5e47a3"
+ "79859f27-83f4-413f-b1bf-63c5ca86cc22"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "90c922e4-3880-43f0-a77a-2aecd0801ba3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022430Z:90c922e4-3880-43f0-a77a-2aecd0801ba3"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:30 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:34 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed43d043-8652-422a-90e8-3fed1b6928b7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.1270904S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "f1105877-ddca-49f2-89f0-72d9f43a3362"
+ "144e759d-0089-469c-8b8a-e10df0dc1f1b"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
- ],
- "x-ms-correlation-request-id": [
- "0a474611-df43-4625-92ee-41ef31ad9f1c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022431Z:0a474611-df43-4625-92ee-41ef31ad9f1c"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:30 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:34 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "585cff4a-ae14-4a98-965b-e93d3d8fa9b6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.4551419S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "546f0409-23a1-49cb-88cf-daccce6c8833"
+ "6c0e96a0-4b58-4cc9-b462-0d39f8135035"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "cd16b78c-5ee1-4a83-b84a-29bf25312b2f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022432Z:cd16b78c-5ee1-4a83-b84a-29bf25312b2f"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:32 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:35 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6261185b-a565-4d1c-91b8-052865929243"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.9062312S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "d52cac01-17d9-4ab5-8c64-ce275f26373b"
+ "2dc88b19-1e5d-4589-8ee2-6eb4e8d71f5c"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "656183ac-ae66-4303-af7d-fa3ac01c673d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022433Z:656183ac-ae66-4303-af7d-fa3ac01c673d"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:33 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:35 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c4763051-dfe5-46eb-ae4c-3d4b5d664ff0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.2656126S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "993f0b08-793d-4e68-b177-fb7041bb6d81"
+ "c6c40ed1-9cf8-4b20-844e-d49ac85ec80c"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "00798d4e-492b-4faa-a599-c19c3506d25b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022434Z:00798d4e-492b-4faa-a599-c19c3506d25b"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:34 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:36 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d4166094-2aa3-4f92-b8bf-65450342d7dd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.7833068S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "8280f4b9-5f6e-4d37-82dd-1f2465e0b522"
+ "c67e9363-d44e-48ef-a444-3f41ca86b4c5"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "8fbf406d-4774-4112-9087-142633198024"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022434Z:8fbf406d-4774-4112-9087-142633198024"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:34 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:36 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de162b13-7f4a-4689-88dd-df5d9db0fe21"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.401248S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "5bb71a1d-9fc1-4d01-a298-6a7fe058ac29"
+ "e1ba1f91-97d9-4612-9bd2-e2ac7cea30eb"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
- ],
- "x-ms-correlation-request-id": [
- "ed128a85-5790-457f-9b32-c186be3d266a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022435Z:ed128a85-5790-457f-9b32-c186be3d266a"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:34 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:37 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "77c741d4-261d-4f00-87af-5d9f5bfc967c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.8458302S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "aaabd3a6-01d4-49a5-ab70-a040cd6866d2"
+ "f6ce7094-da6a-4a9f-80e5-f6c1adfdada0"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "2db28dd2-bf07-44b3-9043-d2a43da892ab"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022436Z:2db28dd2-bf07-44b3-9043-d2a43da892ab"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:35 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:37 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "73b8ed5e-e4c8-4076-8d60-728ed9b8eb54"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.1718905S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "1210f64d-c831-40ee-bec2-53e44f77b2aa"
+ "5b293554-09de-4bc4-8122-832839a5a615"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "7b35ad86-2ffd-4ace-887a-b0202203c180"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022437Z:7b35ad86-2ffd-4ace-887a-b0202203c180"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:37 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:37 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8938a253-c6de-4406-aee3-25f16506e94b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5020637S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "6661ebe6-8efb-49ef-9687-48d14e0c954d"
+ "354327df-bef7-4f93-bfc9-b2fc7d96d2e5"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
- ],
- "x-ms-correlation-request-id": [
- "99549ffa-75ca-469a-9b8d-db26e9c739dd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022438Z:99549ffa-75ca-469a-9b8d-db26e9c739dd"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:37 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7dc2101f-a016-4c24-8e50-808550b2142d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.8387619S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "f3c7f0f7-a231-40d4-8001-641c2497e488"
+ "160ad68a-3730-4d5e-9e49-f9f40a51c944"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "ab25d74d-6493-438a-a0ea-078b6a1f4c62"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022438Z:ab25d74d-6493-438a-a0ea-078b6a1f4c62"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:38 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b279ef37-3562-463a-b1b1-881dca1b7edb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.1562622S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "c433418f-8a9b-4668-8a3c-3076abe97b94"
+ "2b6727ba-7342-4ec8-909e-fe9ee92425db"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-correlation-request-id": [
- "5566998d-1fbf-423b-a73a-6d07f2ecf389"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022439Z:5566998d-1fbf-423b-a73a-6d07f2ecf389"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:38 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7e8ed5b9-7676-4c86-bb44-4bcb2e91adc6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.5106413S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "e5d1a412-2e53-4dea-a67b-b9a9364ec88b"
+ "376aa334-5053-4295-b6fc-edc70a9b99a0"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "14b1ef15-5671-491b-92c3-a3b67cb31362"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022440Z:14b1ef15-5671-491b-92c3-a3b67cb31362"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:39 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e18a608e-fb04-430c-afab-002163981312"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.8302425S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "52a73475-2e9d-4cb4-82eb-ca05d6e87dc3"
+ "9f9196e0-f3e7-4a97-8dee-f952f783b00d"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "91618bf1-5b1a-4a54-a33a-45c18db09c54"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022440Z:91618bf1-5b1a-4a54-a33a-45c18db09c54"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:40 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bec0f351-7b65-4bae-abd8-44d0ec0ebf60"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.1427169S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "80732817-442d-4611-9ec6-37073981ed48"
+ "67902509-4637-4cbf-94c0-96d091d772da"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "d7f8d82e-19d9-4ff1-8a81-67e679ed2962"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022441Z:d7f8d82e-19d9-4ff1-8a81-67e679ed2962"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:40 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b5139a1a-0434-4823-9d33-7d96f62f8c08"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.5418902S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "615b3262-1087-4212-9f61-09f0207cd77e"
+ "3a3a833a-3492-451f-b912-6859504fb728"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "e5d3e615-647f-4d03-9479-2cc3b2103b56"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022441Z:e5d3e615-647f-4d03-9479-2cc3b2103b56"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:41 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fef94fc4-c587-4450-9bce-6b1a73339d1b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.8458692S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "3b94deba-f1b3-4524-8991-5865a50872e6"
+ "66ab11df-b568-4205-b886-6b4d2a762436"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "f0f0a96c-56e0-47d7-92d4-d13dc32c5a7d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022442Z:f0f0a96c-56e0-47d7-92d4-d13dc32c5a7d"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:42 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8bbaf76e-7784-4dcf-96be-990c1596e3ce"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.1668894S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "562cd192-8446-4964-8108-56d4a0f063a2"
+ "809de9ef-bd3d-4291-91df-454918e8e804"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "7a080614-d571-4f0e-9d9b-fc64ad5b0a06"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022443Z:7a080614-d571-4f0e-9d9b-fc64ad5b0a06"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:42 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c215b280-0544-4d83-bd1e-13f5b175d39c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.4844298S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "33b7678b-15c7-40e2-a91a-c089c6fe7ef8"
+ "18df0510-14b9-448b-bd00-7318b094641e"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "b38c7938-3977-4372-b84b-088f6485656d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022444Z:b38c7938-3977-4372-b84b-088f6485656d"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:44 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "110f67f4-b124-42e6-9dfe-edf1e5cde6c7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.7969554S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "00a84105-341a-4e10-9e0b-5db9f7c3f0a3"
+ "6f419f1b-e811-4fb0-9ae5-c83b7979e7f1"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "2ec87878-5387-41f3-b551-e0788efb60d6"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022444Z:2ec87878-5387-41f3-b551-e0788efb60d6"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:44 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f08991a4-ad67-4fc8-9406-dcc6cbf97555"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.2294164S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "1743a118-f590-4f17-9ab6-0e358c687036"
+ "8cf63116-1f82-4bf5-a227-25b50d3cec1b"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "020c1e1a-dad8-45cf-8e14-a653a178fadc"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022445Z:020c1e1a-dad8-45cf-8e14-a653a178fadc"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:45 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f61114cf-9aba-4a5a-88e6-f1d6857ae1fa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.5419184S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "e83e0e1b-a402-452d-9364-a24ddf18a199"
+ "bee925e6-b110-4613-91ff-03d0dd3a3712"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "07615224-11c3-456a-9578-9dc46d006af5"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022446Z:07615224-11c3-456a-9578-9dc46d006af5"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:45 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9e6f50a7-2c0e-47dd-b4a6-1385727652cf"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.9396355S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "4b75a1cb-8375-4966-8dab-00be825a0821"
+ "2d445150-83c0-4d04-b788-c09a270943b7"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "d28c44cb-8ea9-4205-b1a5-26a84df19572"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022446Z:d28c44cb-8ea9-4205-b1a5-26a84df19572"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:45 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "89c37372-9446-4c07-8bda-75ab04eaa769"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.2657334S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "2323a7ac-8862-4b77-ab10-0e8ecabdc599"
+ "a0786b0d-b01a-4a46-9d48-cc164a304673"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
- ],
- "x-ms-correlation-request-id": [
- "c0c60b8d-6352-44d5-aa93-543ce8377b0b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022447Z:c0c60b8d-6352-44d5-aa93-543ce8377b0b"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:47 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88daea8a-8563-49bd-a45e-e724a53289ba"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.7230424S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "985e0c2c-7973-4846-9dd7-6da191059428"
+ "d5a2ae6c-f850-4aa7-8ecb-32f88f37c0fc"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "32cda493-640e-4dce-9357-df9a382f6b71"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022448Z:32cda493-640e-4dce-9357-df9a382f6b71"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:47 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:44 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7adba006-ac9a-49eb-a53a-4f8a766e368c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.1094905S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "a11abcc3-b6d7-4f91-bd97-eaa5e1ce76cf"
+ "a304816f-f1f0-4765-9918-fb6c326f546a"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "488d8c35-8f00-4228-9194-139379914036"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022449Z:488d8c35-8f00-4228-9194-139379914036"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:48 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:44 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c23e92d8-0ffd-49ee-b508-fc388a74e8cb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.4794176S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "22"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "f0b728b4-6df7-4e26-a99a-d8e892c3cd8a"
+ "5a0162ae-e846-4e64-a79e-ad497ee18c2d"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
],
- "x-ms-correlation-request-id": [
- "eb914edb-d720-4a8f-ad85-59cd1ed1aea8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022449Z:eb914edb-d720-4a8f-ad85-59cd1ed1aea8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:49 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:45 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjMzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e0b8446-df8b-4ea4-9ed8-29d775fbc3a5"
+ "a14e39ff-095e-4741-970d-1a23610bfc97"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2331' under resource group 'ps5201' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.8438606S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "153"
- ],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "14ea1959-911d-4038-afa5-e9ae9b525cc8"
- ],
- "x-ms-correlation-request-id": [
- "14ea1959-911d-4038-afa5-e9ae9b525cc8"
+ "673b39bb-a830-49b1-8028-f6d42d01331e"
],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022451Z:14ea1959-911d-4038-afa5-e9ae9b525cc8"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:50 GMT"
+ "Thu, 07 Jun 2018 12:50:45 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjMzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "46e2bc83-785f-434a-9eb3-3b62e36b4279"
+ "e85c35ef-dfda-4f10-9553-b6ec7cff18b8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2331' under resource group 'ps5201' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.3324271S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "153"
- ],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "10b8b292-be52-4e63-8874-b733561b6c26"
+ "5bf23df8-a024-4d24-94f8-b21e7acbab9a"
],
- "x-ms-correlation-request-id": [
- "10b8b292-be52-4e63-8874-b733561b6c26"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022451Z:10b8b292-be52-4e63-8874-b733561b6c26"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:50 GMT"
+ "Thu, 07 Jun 2018 12:50:45 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjMzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ef8d0e7a-5171-459b-b765-e1d57038e8d5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9971\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9971\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2331.azuredatalakeanalytics.net\",\r\n \"accountId\": \"74a2150e-ce00-4fa8-a111-86e0bf4b3fe3\",\r\n \"creationTime\": \"2017-12-07T02:24:56.0062521Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:24:56.0062521Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331\",\r\n \"name\": \"ps2331\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.7138216S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "1216"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "9623739a-6680-4da5-a17c-04ac41caee9a"
+ "c6866513-0e13-4cd5-a224-3145d835b10a"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
- ],
- "x-ms-correlation-request-id": [
- "93259ec2-8929-46b4-9bc4-0f34661b8899"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022524Z:93259ec2-8929-46b4-9bc4-0f34661b8899"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:24 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:46 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjMzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "970bf6df-f908-4af2-8ece-f54c36e4e9fc"
+ "52897ab0-ac07-4d4c-ae22-44a1133d613c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9971\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9971\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2331.azuredatalakeanalytics.net\",\r\n \"accountId\": \"74a2150e-ce00-4fa8-a111-86e0bf4b3fe3\",\r\n \"creationTime\": \"2017-12-07T02:24:56.0062521Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:24:56.0062521Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331\",\r\n \"name\": \"ps2331\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.0668347S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "1216"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "e9c5d43e-254c-4502-9914-f4fe7a387490"
+ "791d5849-6ca4-4d74-8fa0-2878d8861095"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "18cd265d-359e-4410-99c3-2b4a881c0d85"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022525Z:18cd265d-359e-4410-99c3-2b4a881c0d85"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:25 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:46 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjMzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "865c1672-9f59-4e56-b674-8aa1e8103817"
+ "9bf85f9f-7dc3-4de4-8a77-4ebe5b4e2ec1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9971\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9971\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2331.azuredatalakeanalytics.net\",\r\n \"accountId\": \"74a2150e-ce00-4fa8-a111-86e0bf4b3fe3\",\r\n \"creationTime\": \"2017-12-07T02:24:56.0062521Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:24:56.0062521Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331\",\r\n \"name\": \"ps2331\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.3907588S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "1216"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "0b587a2a-0657-44b2-8262-ded31c5cbb67"
+ "2eda07f6-ca95-4c0c-9277-5535fb8899a3"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "3988ae77-b113-4fd5-8972-e7aea1fa45af"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T023052Z:3988ae77-b113-4fd5-8972-e7aea1fa45af"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:51 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjMzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9971\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps9971\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "200"
- ],
"x-ms-client-request-id": [
- "1e4c6543-41e2-4456-a61e-1a4f5b84f1bc"
+ "cdf9eca9-f1fc-4abb-96b7-149b99699d0a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9971\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9971\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"74a2150e-ce00-4fa8-a111-86e0bf4b3fe3\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331\",\r\n \"name\": \"ps2331\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8388368S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "489"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "dec4a6c6-e64c-4c28-b4ab-9669d33dd9cc"
+ "1929ba20-ad1d-4e39-a9a8-f267dd57b083"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "ac4622b1-78d8-40c5-a962-387d63d44b6b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022453Z:ac4622b1-78d8-40c5-a962-387d63d44b6b"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:53 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331/operationresults/0?api-version=2016-11-01"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:47 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5dda35e0-095b-4aa3-b57d-201575868b5e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.1449634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "f58e39a1-a284-4bf9-b78f-f64fbec9eb8c"
+ "ac6cbd64-3ba3-4639-a8cd-538541f920a2"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-correlation-request-id": [
- "02a5b6be-c6bb-4caa-85ee-d0aeb950bddd"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022454Z:02a5b6be-c6bb-4caa-85ee-d0aeb950bddd"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:53 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d7ba491e-44e8-454c-a6d4-c51b774ce714"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT16.7919812S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "170c1e7c-70e6-4e4c-9c99-a679f842e3a8"
+ "8cb2fe5f-8b2c-4818-911d-c04e4066e68f"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "3150a8a7-de23-4482-9f72-5259b718928e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022454Z:3150a8a7-de23-4482-9f72-5259b718928e"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:54 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "19d508fe-e8cf-442f-9fdd-1e6d80edb2d6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.1201185S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "ab89c427-eb1a-4e4e-97c3-8f5dcce90a08"
+ "1a2555a2-7b17-4d34-b537-7b102110b739"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "50b1384e-96cd-4177-9d2a-66b99fcea6f2"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022455Z:50b1384e-96cd-4177-9d2a-66b99fcea6f2"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:55 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4af9d2c4-71c8-4521-a329-640154064e33"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.4575263S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "c926eaef-2e96-4e0a-85f9-1dbb8fe40aa0"
+ "796c142a-fe23-4fa4-9fa8-0907485263c5"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "28304cda-8a15-4dfb-b4ec-06b01a673b5b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022456Z:28304cda-8a15-4dfb-b4ec-06b01a673b5b"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:56 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "db6b8e8f-d9b9-4b2a-ab87-690703f2f002"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.8075997S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "a56554b2-5138-4b16-8b48-f3863c39983e"
+ "78762d99-fbe0-4b76-98bc-2d606b1d40de"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "4d96d6f8-54e2-4912-81f5-74edac604aa2"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022457Z:4d96d6f8-54e2-4912-81f5-74edac604aa2"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:57 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:51 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4fff9334-c99b-4a67-b40b-24f35af40f0e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT18.1585369S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "84e53f45-3521-40ed-a22c-044fa3a9c72f"
+ "e4cd4d08-5329-431a-a1f9-f12c1a7cc124"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "bde166c5-f374-4196-8195-8239cb7daccb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022457Z:bde166c5-f374-4196-8195-8239cb7daccb"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:56 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:51 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "347dfe4e-ebff-4413-8f96-4f823c278794"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT18.5804146S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "6531a40e-af96-4403-a5e9-233ef05e492b"
+ "c270e886-053d-40cb-bac2-185c7fdbabdc"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "fc01978e-2526-42d9-af9d-e648844ba781"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022458Z:fc01978e-2526-42d9-af9d-e648844ba781"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:57 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:51 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0031523b-6de0-400f-9638-2a0626c4b90b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT18.8908612S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "a2900ae1-250b-4c21-bf73-1e2a4f4f0898"
+ "f9dcc1a7-6a14-4cdf-afac-16cbb8a0b90f"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "a76576c8-c177-4998-ae59-24bd34369b9a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022458Z:a76576c8-c177-4998-ae59-24bd34369b9a"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:57 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d16a72bb-bff2-4540-b651-995061f2b123"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT19.6252587S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "df738280-31cd-4b29-884e-74afedaee9d4"
+ "2477347a-80f1-45d7-a052-a01d580aa6c0"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "5544e3d3-b3e1-42c6-98fd-f47c93e4c971"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022459Z:5544e3d3-b3e1-42c6-98fd-f47c93e4c971"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:24:59 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b68acaec-747b-4bcd-b32e-072ef588b4b9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT19.988827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "7002f48d-7fb4-49e1-a09f-5012b4d2bcc6"
+ "3afe8490-e988-46b5-9b9a-412025981f96"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "80f7ba8c-15ba-484b-9368-67b005046449"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022501Z:80f7ba8c-15ba-484b-9368-67b005046449"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:01 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:53 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6a9613b7-b55c-4e28-9241-b5f6e14fb220"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.3388683S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "940d4a60-1ba2-44e2-a2e4-a12bb8fdef6a"
+ "1d10b48a-963c-4914-a293-b2384620e227"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "ad8a4dd1-ea2a-4107-86f6-4499ac6e958c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022502Z:ad8a4dd1-ea2a-4107-86f6-4499ac6e958c"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:01 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:53 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d20ff3a6-8c2e-4eee-ad29-46d33a13de76"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.6919878S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "474cd560-d6b0-415a-8f1a-5dc0cc1bed25"
+ "9cec3fe4-73a4-4af1-8e82-a28b103d87c9"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "d4b2ccf4-6d7a-408b-8b61-37f1b3210a15"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022503Z:d4b2ccf4-6d7a-408b-8b61-37f1b3210a15"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:02 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:53 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48fdef22-e0db-4321-a90c-68d52073024d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.0471542S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "4b29b987-ed10-452b-9003-ef37d373b558"
+ "2f793648-44c0-4e32-ab81-bdeb4ff94f09"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "c40c8b5e-f0da-4c1c-b0ba-f045f606162e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022503Z:c40c8b5e-f0da-4c1c-b0ba-f045f606162e"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:03 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "816f6515-87a8-49b8-b626-a83af2f85e06"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.3773339S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "117d1a13-4310-471a-a317-60c9f1e27d23"
+ "1c3771a7-89a3-40d1-ba25-803ce2c71f9b"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
- ],
- "x-ms-correlation-request-id": [
- "01b6fe29-4ab1-4153-af6a-c27f5595f97e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022504Z:01b6fe29-4ab1-4153-af6a-c27f5595f97e"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:03 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9953d9ee-8dbb-442c-b7b9-33b613ee040f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.8013826S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "817d4ea8-bdb1-4268-9b95-3ef89b7a2ed5"
+ "c08d4cc2-0e8e-41f7-a775-363e3974f048"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-correlation-request-id": [
- "38c856ad-26bc-4e79-86e3-be5b2ff3da2d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022507Z:38c856ad-26bc-4e79-86e3-be5b2ff3da2d"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:07 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:55 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0334c3da-796d-4505-9538-3f019d4d9ad1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.1294899S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "35a49ebd-c054-40ae-a0d2-5ef539ff8596"
+ "bb17d44c-f01f-4417-93f3-178428d54d28"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-correlation-request-id": [
- "1f22648f-2d19-4a08-9642-4cce0bb62f0e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022508Z:1f22648f-2d19-4a08-9642-4cce0bb62f0e"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:07 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:55 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3dc74bed-91eb-459f-8cb2-b7dd738cac5b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.5201486S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "e59c7976-d8b2-4590-8eb8-e55cc3d3ba32"
+ "2051f5c2-bac3-435e-bc37-cbb08a903eb3"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "194c998b-9102-4abe-a8aa-306bb92cdb00"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022509Z:194c998b-9102-4abe-a8aa-306bb92cdb00"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:08 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:55 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "02d67085-b07f-415e-90a6-fdee8df30f73"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.932644S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "6767ed3d-2c83-4979-b297-61d9008afea0"
+ "4f5dda51-4ad4-48d5-9cfb-a5b14fb20d48"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "fd557ec5-4b01-4d4a-9170-624c79ea7e83"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022509Z:fd557ec5-4b01-4d4a-9170-624c79ea7e83"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:09 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f10f2777-63ca-46a0-972f-d6d75961e18b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT23.2679889S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "9afb52f5-9207-4e0a-b76d-d24ad5662e77"
+ "c673e13b-f383-419d-a5e9-5ac1f36412b5"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "c17977f8-2565-43d1-b061-a1d94169bfdf"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022510Z:c17977f8-2565-43d1-b061-a1d94169bfdf"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:10 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52a55326-c92d-4f81-8d74-9336d005f7ae"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT23.5784587S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "33d17d54-b7ba-41ac-b2c3-e4a672b5b78c"
+ "eb970593-3ccc-4886-ad1c-067539b1d519"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "94fb39cc-7612-49b3-8b0a-51753f636f9c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022510Z:94fb39cc-7612-49b3-8b0a-51753f636f9c"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:10 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4843c8dc-9f04-4d68-8452-058ffa980169"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT24.1429867S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "5c4f1b61-bd3c-457f-9877-d766c6d1996c"
+ "2ed702a4-4628-4383-b070-a5c18ce7418c"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "41f7d62c-48b7-4f18-b632-ac732b016be9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022512Z:41f7d62c-48b7-4f18-b632-ac732b016be9"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:11 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "298806db-f746-4b71-9126-9b4e955462f0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT24.6273874S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "8662a121-193c-4bfe-839f-797a2c2e6512"
+ "2a45abf0-7dd8-4b8c-8f1f-f75d0ccb6781"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "8453854c-69fa-485d-854e-4049b21bd87e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022513Z:8453854c-69fa-485d-854e-4049b21bd87e"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:12 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff247f30-1fc9-454a-a60f-185b440116a6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT24.9420472S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "0c198f7d-e98c-48d5-9236-30fbb955d247"
+ "20c9cba3-25e6-4d7f-8f7f-851818f76b40"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-correlation-request-id": [
- "6c0db699-2be9-42bb-9a5f-d6449cd8b179"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022513Z:6c0db699-2be9-42bb-9a5f-d6449cd8b179"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:12 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
+ "x-ms-client-request-id": [
+ "37feeb0e-0aa4-45e3-ae94-b5ed1801ae61"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.2659558S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "30d1d80a-a7c2-4420-b1fa-2f17a70e2d77"
+ "b2864ffd-47f3-4da1-b844-c0142870c0d7"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "c6e558a6-5c67-469f-ae8a-6d8d172c1c56"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022514Z:c6e558a6-5c67-469f-ae8a-6d8d172c1c56"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:13 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "53ebe0cf-bf1c-4174-8d9d-b922f9c0d1ee"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.8305288S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "d410afc9-e21b-4a4a-85ee-e11739851dea"
+ "17a140ab-afd1-46fa-b68f-cfd566503dec"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "593151f7-0f86-4cf0-bdb0-cc92a9cde4ff"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022514Z:593151f7-0f86-4cf0-bdb0-cc92a9cde4ff"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:14 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:50:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0b967a70-198d-49a0-8243-c4af4dac0c41"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT26.1764476S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "00112d8f-7a17-4861-bc05-365c2098fb4f"
+ "ac171e81-4a40-4ea2-a369-914f182c4fa0"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
],
- "x-ms-correlation-request-id": [
- "aa6b90b8-00d4-4baa-b1fc-6fbb4cc7a296"
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022515Z:aa6b90b8-00d4-4baa-b1fc-6fbb4cc7a296"
+ "Date": [
+ "Thu, 07 Jun 2018 12:50:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f9e769e-7765-40a2-8f59-6ed8c9e34efd"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "accept-language": [
+ "en-US"
],
- "Connection": [
- "close"
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT26.5180212S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
- "Cache-Control": [
- "no-cache"
+ "Expires": [
+ "-1"
],
- "Date": [
- "Thu, 07 Dec 2017 02:25:15 GMT"
+ "Transfer-Encoding": [
+ "chunked"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "x-ms-request-id": [
+ "bbf24f27-3d90-45b0-bb9a-75805245670e"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:50:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cbced3fb-f644-4825-bba8-540cda60f7f7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT26.8441053S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "b0f9ab82-c7b0-4f14-99f7-56e07afbca9b"
+ "f0413374-c836-4bcc-921b-a0aaf1ae615f"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
],
- "x-ms-correlation-request-id": [
- "32e25740-8f37-4172-9212-5b02f8430e21"
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022516Z:32e25740-8f37-4172-9212-5b02f8430e21"
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d7421eb9-e566-49e0-94a4-18f0747560df"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "accept-language": [
+ "en-US"
],
- "Connection": [
- "close"
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT27.1586611S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
- "Cache-Control": [
- "no-cache"
+ "Expires": [
+ "-1"
],
- "Date": [
- "Thu, 07 Dec 2017 02:25:15 GMT"
+ "Transfer-Encoding": [
+ "chunked"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "x-ms-request-id": [
+ "52d89524-81f0-4615-9cc8-fb9f90378c45"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ffd528f5-cc6e-4ff6-ae94-4410f11b9b30"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT27.5024324S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "156ab08f-d8d9-49c8-b2fa-705007ba183f"
+ "31301377-265f-4d92-be4e-02d21ae74bce"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-correlation-request-id": [
- "1e2d9c8d-88cc-4f53-aa41-5ca3d671b81c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022516Z:1e2d9c8d-88cc-4f53-aa41-5ca3d671b81c"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:16 GMT"
+ "Thu, 07 Jun 2018 12:51:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fdc48bf1-871e-49b3-884a-1abfe9500579"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "accept-language": [
+ "en-US"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT27.8461861S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "cc957aa7-947e-4c32-9d9f-d2fcd8ef123e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "616d04e4-640d-4aaf-a680-0913f4b41afd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT28.2546092S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "66f4c972-7918-4013-9f86-bf892f3ac665"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fbf2dff7-c265-4c9d-bbbf-db637bc53640"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT28.5649497S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "23fbb526-32fd-4a45-8ce5-86af41af67d7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a954a067-ed83-4a0e-bd64-57f19383059f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT28.9378913S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bdf9e250-f006-4c5e-b241-5cb7fc6bebe6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "690fb613-d8ed-40b2-b99b-0adbc6827d8f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT29.3305692S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "475a1d38-3127-49cd-b119-75933d52fb0a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d231b6db-c028-4646-b1fd-082b1b484253"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT29.6743409S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "da69a1f4-679e-4a1f-8721-c64c9dddc58f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "43c1be71-75fe-4282-9df0-1ee273a6c11e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT30.0420965S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "92f76ffd-4ab6-45d5-9bbf-cb10c8d58562"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6162380b-de7c-4b66-a554-507c64260802"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT30.4555837S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bbcdba9f-8afd-4593-b751-ced5bc68c86a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d635f31-6395-47f4-b624-1b01fc4a7d8e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT30.8796623S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "03796df6-0f9f-4342-a731-136dbf57b0d4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8fd5e24-203f-469d-8d81-797fdb5027b3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT31.2055954S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b2605764-228c-4499-9c62-e50e7de33034"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e992ebf4-eb04-4cc3-abcb-f823b85e0b11"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT31.5203291S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "19033736-f2df-4f19-bbfe-62493a7355e1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e411b70b-3596-41d4-a5a3-8e02a50e4d41"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT31.8640756S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "65062dd0-5524-4f41-8938-6cab2597ffd8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0f1c1d6-d1db-4fc1-bbe0-bfa7dc242124"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT32.2547062S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f3561bce-f31e-42c3-aec9-14cb4fb37809"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "76038eef-3fd3-4387-ab1c-4350ae22daab"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT32.5828358S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "87dcbcfd-6489-4811-b907-073a1e7f2f0e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "92f7d002-4dac-4680-91a8-1ee23c8f82e9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT32.9536012S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a3ff6333-6ea8-41ce-b1d5-27cd8ba8378f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d8388b5f-f2db-4b23-9786-0b4e1c1c9449"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT33.3233752S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "16eda409-c8c2-44a7-9159-90a9505f51b6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1bc8d1a1-5c4e-4176-8f14-e3794d32a6e4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT33.6922337S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2ca3603b-d75f-445e-bc7d-b647b3a867c1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6c62b50a-e8fe-46c5-8e49-4602791028a1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT34.0962696S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a00e3830-4f6f-4b7f-8b79-73ccdb607633"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8db554c-802a-4068-8f6b-904d23f0aea3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT34.4244184S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "950a3e5c-7a0f-48ca-8c2d-edd301524c20"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17ab2708-2128-4d50-8a24-c7681d655ba8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT34.8306541S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b9e657ca-4611-4e8f-b7c8-429dafa83af7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "314b1a04-cdd3-49e7-a028-5c34b4ad7bdc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT35.156763S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f090206c-1bf6-4c62-979c-281b451f8854"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:08 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b3271603-cb03-4974-95b2-cd41fdde2333"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT35.6255051S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "77df4fdd-a7b7-4e86-8585-4034b09b322d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:08 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "167788e7-8711-423d-b9a4-5a2758fe0a26"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT36.0025643S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "44dd6754-f7ef-494c-ba58-b3b797f848b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "92e531d2-34aa-4f44-8491-90a02dab22ef"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT36.3485382S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "68235027-eebb-40ed-87ba-0be125cf8a84"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b23075bf-178c-471b-8756-8144015c8197"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT36.688021S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "3ac90fc4-c6d5-4ebc-8846-d3d0f0359fe2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "09ac24d0-f9a1-4fb5-b337-e87b60eb4a4f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT37.0474009S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "3351a176-fae9-4332-ba1a-65bc2f3457db"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:10 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f59206e8-0a1d-4c3c-bc89-12d20628f9e5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT37.5005532S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "81e2f49b-c975-4fc8-a192-fc7a024d680e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:10 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "050e0fc5-f443-4d42-baaf-c00de0fbe378"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT37.8485484S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a64d61c5-8114-4608-ae90-a654d3b8b8c5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:10 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a8416a59-f141-4c19-a2d2-3540d5f3810f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT38.2391994S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "563e8266-67b9-4c15-9c1c-1f4508c72e5a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d7ed90fc-d0a4-43e6-82af-e869399acd84"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT38.551682S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ab49c6c8-6705-4545-b06d-b4d36222db5c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6452cb0b-fdd1-4265-bf8e-0499f0eddc0c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT38.9579403S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "514ecf1a-bee9-4d33-8097-df9edb775e6f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "36b90388-77d7-48ae-aabb-624b661ca17c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT39.4640396S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4b725050-6d8a-4710-a712-8bd85b140acb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03403293-d150-46ab-b7c0-5add15d6a717"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT39.8078218S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "99335a09-a440-40ce-ae7a-1f73b6814854"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7c64b1e-ea3b-485e-9bf1-7cd5e6a0e2ab"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT40.145483S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e4fae3e0-a881-4dee-b5db-2c3283ab3809"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6441993-7bc2-499e-b55c-2d15b821d388"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT40.5204732S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6c5c08df-db0a-4f4e-ba9c-02b078d462ff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7970cc72-0155-4a44-aef4-c64bb90dfcc2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT40.8329988S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bdb70d36-c727-4538-8577-b6381b1b9d5e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d578f21-b0dc-43f2-a1e9-56a5432829f3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT41.1589006S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "064737ba-b55d-4afe-9b23-d09f27b38405"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "da7a5387-a785-4f33-b3f9-4a16d2e1a1d5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT41.487012S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5605124c-fb41-4025-b1ab-2598622ed1ba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0ccf30a-7c65-4d0d-92aa-0246d0354fbb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT42.0680393S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "70eaecd0-b80a-4f2f-a377-7a5ee10c1ec9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ed3e160-3eca-4f81-aad3-54110f63a0de"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT42.5361387S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d0a14aa3-b454-40d3-b587-ffec787bec89"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07c7fac9-d6ba-49a3-8139-24b3fd84e813"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT42.880575S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c7cf914c-94e4-455a-b1dc-61477cf01a89"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20ef5c56-2f9d-42f8-abb4-5829aeaf5484"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT43.192399S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ea2c9fcf-6af6-45ef-ada3-12551d0eb7a9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7827249a-0029-4046-ab0d-0268e12cda42"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT43.5943876S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8cccf6f5-20aa-49ad-99c9-bd6ab88d6270"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29d995de-f1c7-4adc-8725-feb20b9fb77e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT43.9797215S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b70319f1-9988-4034-a7f8-52a4a0b0c345"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:17 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "072a3ce5-801b-4d49-a4bc-10f4491f9a6b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT44.3547242S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ebcbdcec-6bd7-4f98-a73c-fdddd388300d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:17 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e5651eb-54dd-4731-b37e-51ba49de6943"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT44.6745902S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "983bd867-4c87-412d-864a-400372d1c8d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:17 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88e297d3-14e3-4da4-ad5b-4d59f90f1dba"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT45.0524995S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0bd2d280-02a1-42ee-9ed8-8344a42d9c06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88c2d53e-e805-43da-9051-c97ad0f2d199"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT45.5495745S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a1dd76fe-719e-4788-aaa9-9f28f3a6f465"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2750412-9cf4-4518-8a5b-2c7fa4a2e564"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT45.8777064S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "23bc8305-f6bf-4e4b-850c-78fa98a90937"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "efcce417-d236-495b-b744-c8d4e7c382e9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT46.2237268S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a5576fd6-0021-4b32-928f-696c6de47f62"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5de361a7-1581-4ab2-93cb-9bf33898d365"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT46.6882018S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "73cf4953-da43-4f02-9171-22c1f09ad604"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9103984b-c4e9-4755-9b0b-218328ef29d2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT47.1143714S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "24844f05-3ec7-4770-a66c-bf9afd7a9370"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7264d8f3-738e-4d35-aee4-621e540650d0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT47.5206109S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c2e24ebb-4078-416d-9806-d4a394771071"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "607d2206-6fb7-4d84-9616-553710322e33"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT47.9893682S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4af41692-43a1-44a9-b530-fc0a6ebe1e7e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:21 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a05faa78-a22a-4806-9175-fb4340d8b46c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT48.3777616S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "eea49888-ff8a-44d7-bbd5-05ca37fb5576"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:21 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c4ab9d74-f9f9-471a-afdc-6d5b9912991f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT48.7706301S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8bc3b4fa-206b-4bde-9cbf-901cc95d6f55"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:21 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "21b467cc-66b9-4d26-a27a-9505bfd1cb31"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT49.1456366S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "da4ee927-75e6-427a-b124-38422b99aad4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "16a91444-6ac7-40bd-8b30-f38569770141"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT49.5050386S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0cfc2c1f-e456-4b03-be64-d8a84bb31c13"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ce6af279-5b22-41b7-b208-61b920a37aa7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT49.8078774S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b7cb0b86-2fc1-4d50-ae60-2bbd168214cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "19b966a6-954f-4aa4-8567-ee4d5ed7e6ec"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT50.1672739S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "af58be89-445f-40ff-a5a3-e97d12e4faac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3531c8b2-1181-48d0-83cf-86f1b532a2c6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT50.5891628S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c18474e4-9395-4954-9744-46f5147085b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "afc5073a-0ca8-459f-b1bf-c5c4617b8cef"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT50.9328855S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "38ed5c13-c065-42a2-92cf-dac69edb7423"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1f8c24fe-244e-416e-8923-a7011dd2311d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT51.2684165S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c60e4ce0-1958-4951-89eb-36d7da1bcfda"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:24 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "53f003d9-a111-4e05-ba88-230519efc10c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT51.7840667S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "eaf36362-31d8-4b5e-ab4e-645bed00a198"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:24 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3587055-c482-4dc7-9271-c61365fa7c15"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT52.159073S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bd9bed59-6b4e-47ca-bba1-caa55bfd5c8e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "18bac1fa-ddd1-4767-ad55-947d930efa99"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT52.6144586S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "514c8e1f-2ae4-4e79-8352-701f220abebc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e58a9aec-53b4-42b3-a0b0-44ca16266a20"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT52.9641836S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "77db354b-b42e-4abd-9bae-ecaa1bb9d338"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6c7be4d1-f7ee-4383-bc7c-9fb1a9a5e125"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT53.3153395S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "eebecbc7-6321-4a12-a20d-0d16200658c9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e66fe62f-cb23-4951-81e6-65fb26a1693b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT53.7082297S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4936160c-b2bc-4457-91e5-4af1d7ec3c02"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fef45b2e-4977-4772-93fe-029edad96413"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT54.0520034S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "124ca78b-4231-4527-96f4-d0e143890a94"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "08c073d4-591a-4d86-ad5d-74ee595361e6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT54.3778391S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5b802e00-d0f8-469f-b005-cd6fffffce09"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1d079849-0ef5-4198-b8a4-1d04a9a7a57d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT54.721627S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "59d522c0-4914-41c7-97c8-fd8352b2b5dc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52b11e3a-99d3-42f3-9308-cc1be2f7df5a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT55.1301536S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "606e97e9-eb7f-4a20-8c63-b8ea8effe44b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "832e5486-690a-4240-a1df-e5a87fba27b2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT55.4582777S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2dbe796c-5e9d-473e-a4e8-38dcc161c0f0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:28 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5603d240-6eef-4a5e-9320-99fa307b1467"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT55.7821085S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "1c69041f-22e4-4bde-a879-d882d79e8685"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:28 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "baa5b93e-7c7f-4f66-bdd9-71ecffbc3eb2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT56.1933609S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c79d374e-99c6-4137-8b26-96f73dff517b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5eaaf451-ce75-4785-a6ef-529b84c03a67"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT56.579004S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6477be95-49d5-4304-9a87-461fafd5eb30"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a6d47e4-0dba-4420-9d0c-c015a06b0cfd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT57.0633589S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "cfaddb8b-c700-45f4-80f7-c160618058de"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b243bd2-e3c9-4f75-b8ec-3eb1ce505249"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT57.4902653S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "854f4d40-49f5-4eee-adde-4b01334647d5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:30 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "324f3368-c083-49fb-bc9e-9f30ec26e150"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT57.9277591S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "23786261-77be-4fb5-b350-47c3aa58cd10"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:30 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ff9dfa3-8f80-4d45-82e9-cfb994904cac"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT58.2821442S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b476773f-14bd-47d7-a7cf-3be4496d794c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ebb9ee56-22ee-456d-97dd-2bb1a18e65f3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT58.6102907S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "18f54398-4fe5-4def-9ec4-02023f7e4964"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d5782af6-4d0b-4e74-b8cd-457f9ee56611"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT59.0009121S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "61d525d3-1cf1-41f9-9249-0e16b91e4c66"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c498c010-cb89-47db-8849-9f4c6ff696ef"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT59.4404379S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "891306cb-5951-4aa6-8a30-aae6ad72ff9f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:32 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5a527703-f8bc-40f2-813b-61baba908f30"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT59.7559225S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9b48d34d-0141-4b3f-b0d0-30af4c570097"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:32 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0d8bda3b-3f16-410e-a569-055b2e70dbd3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M0.0833675S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "92fa93ff-6212-457c-ba98-a23f62399bce"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:32 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7af9c9dd-20db-47ae-852b-ddd329409d70"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M0.3958739S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f7969ef7-2f17-4b67-98a9-3f4ec5d24643"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "04e6d819-04a8-4b15-b9d5-47381f2ef47d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M0.7240163S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5c737d15-c8d8-4933-8750-1d6c4f129280"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0246b654-d04a-4281-b079-38c0fbdf180f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M1.0321918S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7594dd09-05b6-4c2a-a7e2-76cee00f52af"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9157b59-9810-4369-a21f-2f8925969747"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M1.407203S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2984d628-18ed-49e5-83fc-54de865ad127"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:35 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d88c686-dea0-4068-ab74-73e5c8985c6a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M1.7197021S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "728dfb48-d39b-4de7-a00a-47f3f3b6442d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:35 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "da3324ca-1f6e-441b-be11-b617284dfa7b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M2.0521408S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d5910187-b839-4de1-bf13-cb966701c0e5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:35 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d2ff26b-6db7-488b-afe1-cea510b75a67"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M2.3802884S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4591d145-d9a8-4ce8-b27b-cae3d174ca83"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:35 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b15cee39-5495-46e1-8ca3-56f9ea2c7236"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M2.7091244S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0164550e-9bf1-4c1b-a1eb-a06d2372f847"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5c8333f9-8a63-4e3e-a62a-55c63fdd25fa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M3.018622S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "04de2a58-6d79-4fa3-a45d-c1d75f23714d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1f6f920f-4bdc-43cf-8f63-69d77e5137bc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M3.3334333S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "cbd8201a-752a-4b3d-91f8-5a2836ef4c94"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6007c068-0fd9-4c47-b877-d649081ee8e9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M3.6615687S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c4a8578c-4a3d-4b54-b166-93e8e24bf7a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "caeaf2e0-91ca-45e1-aefc-2dbe58b2cfc8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M3.9873672S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b407dedf-1b97-4931-8ed8-f4e2dcf198bf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0bede8a6-aa68-485e-86cc-11a52d0090d2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M4.4896836S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c2e8db49-538e-41c5-9abf-f4cd781f78da"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "af264700-2f72-4834-9319-84d6126e507c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M4.8155322S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ea556ae6-baf4-4c06-bd01-6cecc1b17ed6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "856bfb42-0a41-4882-923c-f79bf059ffd8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M5.1831518S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f89517bc-5adb-4a85-b0bb-3a73a30d47b5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "757f7f9c-3b65-4a94-9b45-886beb71c277"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M5.4874095S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e5fae690-cd27-4912-b928-de2a28dbd120"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "356acf53-1819-4350-892c-e468081cb98d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M5.8178354S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f4ac7e01-a513-4bef-a516-c09ce1256839"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd3a5246-6c1f-43b4-81a2-878e2d80ccb6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M6.1749227S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c565e47e-3b3e-463e-a9c6-971701112a03"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ad89104-a857-4716-8fbb-30bc8cc0e437"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M6.5529426S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ae247486-693e-4a5d-8cea-bfd3a7a78d26"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c3110611-28b8-404d-be3f-0560d8a73df4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M6.8624318S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e657a9d8-50e0-46e1-8bc9-36156c4e491d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07192823-da8a-4d0f-9f82-e2533553de8e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M7.1936171S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8450944b-2269-458f-8858-6e171c0ff3f3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7dbb6e6-3688-4195-8888-9b6976389e28"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M7.5580528S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a8ba9782-cefa-4651-a2e9-62b398e88e77"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:41 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a261443c-b446-43e4-9580-0d96ce739aae"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M7.9093244S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "631c7891-b841-4ec2-9b8d-15f0e44bda74"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:41 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6e50b8b3-092c-46de-9f32-a0fb7669c2ef"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M8.2092266S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c2222327-5472-4727-b616-a53603090d72"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d301471f-1dce-465b-8487-d3beb56b55bb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M8.9897965S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b49037ff-941c-4828-9e8e-affc02940f27"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f876a2a-2529-4e2f-aaa8-d77dc8f8039b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M9.3760804S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "294dc2b5-4735-4586-987c-13dc08a68ab9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "93ab198b-9a5e-408e-b685-efe0654f1106"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M9.7866667S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "46fbb7da-ce37-4d15-8f5d-a964f62ae8ff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:43 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6a93e4e4-c9cd-46aa-b2fc-25e7ec4b951f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M10.1593575S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "35b81f34-d9b6-41c3-a068-787254af9d33"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:43 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "520802c3-a313-4d72-9425-82c75ca585ba"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M10.5999011S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8c4dbedb-751b-47a3-8f5c-8609c32cc973"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "312a45dd-a797-4a10-ac11-beb0a71f7041"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M11.02108S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6fe7969e-2feb-401b-97cc-4fbcdbb63d82"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fd300042-ae96-4630-9203-c7931e1817e6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M11.3292382S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "667804cc-0c77-46e9-904e-86d4eade650f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0241b07-ec9f-4883-a8ac-bf74ecf343e0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M11.6773499S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "037356ae-8733-4e1d-8190-94aa06ef4c5c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:45 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e12ed6b4-fd59-4b61-8a34-35ff0acff166"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M11.9855004S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6a8f3d96-d5ca-4c6c-b54b-f18a574decad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:45 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "37d3661f-2803-46fd-a07c-63b11686bfd2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M12.3237135S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e8bb26d1-8b48-4684-bbec-1d3112ca3ec8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:45 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "50251e16-a596-49a1-90a6-77806dbb45ec"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M12.630468S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9fcd8be0-4d3e-41ba-b6f8-a5d3a33b109b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:45 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5e7f3685-4e16-4359-856f-995953d1bcb2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M12.9430176S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bb2d952a-a131-42c0-aec6-0b48d206a035"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3c37a3f1-6aca-49c3-a4d6-69d92af3585c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M13.2711241S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "345512c1-831b-4551-b243-ce63b1131a1e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c5079916-fca1-4826-9a80-8dbe85b0eed6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M13.5836134S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9f415794-18b7-426a-8ff9-886e952ee1d9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "195ae5c5-28b9-472f-93c7-e62fe8ca4bfc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M13.9230367S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b82f0aea-8f75-4878-9437-2579f0b8d657"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:47 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c412d77b-ba71-4548-b1db-b742b544dcd9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M16.1362316S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7095c7e8-57c4-4a73-81eb-94a00f88bcc5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:49 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d1ae6560-6970-41ad-a3e0-413ff6ab71e6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M16.4899461S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "da79ed03-3999-4a6a-8b39-1bcc5babc296"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:49 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b248715-db1d-434e-bb5a-999c71ce0545"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M16.8344092S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5ed25ece-62f8-4ef8-92a9-076fffd0adc3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:49 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3da85174-cd91-45cb-822a-0e195fdad6bf"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M17.2868084S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bcd0a4bb-55f0-4282-95ee-9cc47ada130a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "42698910-82f8-4a34-be14-6748aa08bac5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M17.6049944S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "16d78b8f-9dba-460a-acde-e211d65df249"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "23c5a21b-6685-4b19-9487-6e7ad5746686"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M17.9430706S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "219270aa-05f3-4a48-98a7-5a005b21add8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96292113-e1bd-4ef5-b76b-52e21fe02d12"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M18.2712425S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "3924756d-378a-45ee-8b25-cdf31b1d02e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7edffe3a-7928-4ad4-8b9c-cfeda3e4058e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M18.6149825S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "34dcd4f5-92d2-441d-824d-66123caca728"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f32cd0b6-de54-4215-b042-d7f2c0f43cd5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M18.9430916S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5bf92ef3-aef3-4d2d-9af1-a7d577e31973"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6be067b-b47a-406b-8928-a7f4d80ecad1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M19.3237593S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "17b9ab5e-00c0-4547-ad46-27397b434c93"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "514098eb-dbf1-4a8d-9ed0-5dd17d1b8a0a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M19.7199856S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d1dfa78a-dd4e-4fb3-9591-1b158e3d7ef6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "da80a495-658e-4552-8b33-ca3dd79d1a8d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M20.0425178S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "299c248d-ac4c-4677-8ef5-2232160fed35"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b764da2d-041e-4bf1-a040-e55ba6b98499"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M20.5220712S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "dba9f88a-46ce-4a46-8463-7d5721a33a32"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:53 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "964eb0d8-ab1c-4e5c-a1c1-96e92d229266"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M20.954418S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "005ad3ef-2bcd-4344-b3ed-59691dd7a74d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:53 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a411e75c-4c5a-4d6c-99a9-b8a45d628e3e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M21.3237777S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7d8315e6-86b0-4f2f-b84c-74c4cda52ebf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:54 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "18199726-c406-4b8e-bec3-2cbb24fe9431"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M21.6462904S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "72e3d90a-724e-4a90-acca-94be1f0fe7c8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:54 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "81069181-20cf-421f-ae3d-34191be16cdb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M21.9544249S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "51bd8eec-6cf8-411b-a2a4-e58ba27c1322"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:54 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f57a26f-ffc4-4931-a282-a93d0fdd965e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M22.2869034S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9a50bf0c-5590-48db-aa2a-33da91729ee5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:55 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c12c65df-ee56-47aa-974c-6d4cccbe5b72"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M22.6206884S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2356f5d4-85a4-4c5d-a58a-664a7f163b5e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:55 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dc1da057-2742-41d6-8877-e5c3427cd2a0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M22.9331846S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "36ac75af-6b0e-4396-9a7d-b75c6521f023"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:55 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8c3ac443-d4ef-4cfd-8d8c-4a4866f50019"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M23.3550458S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "140e6245-6420-4796-925d-2249a9e01453"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:56 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0153eef4-35b7-4e66-9d8a-f9437168dd0f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M23.7825802S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "66f46d85-c35f-45c3-ab57-195f5e83eec9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:56 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "13ec3fd7-d837-4b1e-bfe1-fcd0ab4e0998"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M24.2869448S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "dd5b75f7-8972-46c1-a49e-bd1968daf8bb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "132d97e8-c6d2-46ae-9b07-fe30b220d4b2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M24.6150984S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "54203672-7911-4352-90c1-8c8fa0f3bdd1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a71859d1-8012-4dfd-a938-64a6ba9c2a7c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M24.9283326S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "66882415-7e83-4b34-ae2c-19cc1aa394df"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "307ae885-6e3d-40a3-a6e0-31e70a098517"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M25.3658741S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a31de7f0-63ad-4f1f-927d-2d05896fc2dc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:58 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2561842f-4c1c-4f91-b22d-67153ef1b76f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M25.7408766S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "75393d09-71e2-4bec-898c-ca09e68cd488"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:58 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "965fa564-6e7d-42c4-bc32-dbd12a937e76"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M26.0533574S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6c7466c4-8419-4513-b7ed-92150b3cb38f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:58 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "92585b67-0b30-4be1-9f83-829c1201e469"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M26.4119843S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "184ae10b-6c64-4965-9f34-605b0c9c747d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "be633c1e-4662-4be5-b2c1-8aa9adefe457"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M26.8807421S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "610850b7-d549-4119-baf5-28500d7b07b1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:51:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3cf44e8d-169d-4c37-8983-739175c1237a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M27.194011S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5de173f5-6fcd-4c6e-897e-6068a11a2574"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f3fef75-2699-414a-87df-b9bbad04dc2e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M27.6676081S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "cfee342e-cd2a-45e4-a32f-943442afc1a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6e9d2aa-4780-4bbe-93d6-7a8b25cab631"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M27.9857643S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "dbe28d14-26db-47ae-b549-41daca34ab5d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3c4870f5-c274-471a-9abd-c798c9ca5df1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M28.3346765S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "63ba5462-4f32-43a5-ad65-ed0874b812e1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f0519109-db23-42ec-9c64-f2ba57b63ca2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M28.8495565S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "01b68ab1-c3d5-444c-9df5-0af7859dfb29"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1db59a76-6efd-4e08-a159-fa9d5fc13a17"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M29.3034288S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "dfcd487b-ccf8-49e1-aa42-d199e56cd0a8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "727d36dc-11c0-4861-a800-334d07d8e6c1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M29.8026767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "40f1000a-6b02-404e-aa67-6bb1ae07d4eb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a4c47cee-f003-4f92-a86f-8654392ba42d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M30.1889235S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0b77f017-db4d-4e78-9d53-a07b7d70d698"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a82bb7a8-e1c8-4290-b1e2-d75cc07a40b4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M30.7409759S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "812c5125-ec04-4591-9772-6dd64dab329e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de67d93c-36b7-4aaf-93b6-a0d9b7533af8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M31.0639416S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "83100d91-d4dd-481f-b61a-6c4932bafb18"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ef7e8e44-4bf0-433d-894a-507d16ee0ac2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M31.3764281S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b8a3cb0b-b87b-4b27-bda7-5f63903c3297"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8ca6bc0-066c-4b31-a40b-5c969f7910b7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M31.8551384S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "1470c73f-78da-4830-ae01-8f103020329a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "62f3a639-0b02-4971-bfb6-fa1a241e185f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M32.2514441S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "81920556-cbe4-4abb-8148-fed8be83b858"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0c376999-9ffc-42e8-9c67-234ca5778d5c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M32.5683524S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e6cfb688-aa42-45e2-bf80-2c3a539d742f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "43edb1e5-6b7e-4006-9966-ec5f45f738ab"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M32.9746108S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9607fb1d-d34a-41a1-b0da-25291dcb52f2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "903f3963-7c5f-431a-a6d7-55489259c5a7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M33.287888S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "86263c77-5e21-4a09-9046-379fab8ee3bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "321b7dba-2ff2-4b82-ba93-e25462bdb877"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M33.6152485S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d761f8af-8b19-42b5-b8b9-de81e1b89866"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "51ee53bc-90b5-419c-b788-6993d46dc509"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M33.9389848S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "33d5aea7-ce60-4aeb-96d1-57d24468e163"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2ba32e7-ae8b-4c8e-862d-671eebfdb07a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M34.2715115S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2aa04cff-12eb-4754-a5bd-24f41998a512"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d1a5e4d0-26fa-4561-9d03-ab9bedd00ede"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M34.6889814S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "47ff97ee-2c0a-4f51-b229-faff3c304cd7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07bac67e-626a-4dbb-ba2f-4574f63729d7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M35.0171498S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f87db165-c3b8-4123-9731-54b2e99be5a1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aed9d71e-a2f3-47ab-9456-1333924a908d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M35.3973103S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e9992ba6-931f-4556-88ff-9f61b2000a46"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:08 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "509de567-6afb-4d17-aa74-55b05b9e673e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M35.7879622S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2f81bd01-5b40-4a0b-a32e-7e02d4a0c579"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:08 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a841ff98-6531-4eaa-834a-9f1d425d153d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M36.1317004S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bf98e5d9-0f19-4746-b551-9e8dab1335dc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:08 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3931b960-e7d6-47b9-bd94-216b8646ae2e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M36.5015309S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4397b60e-9c50-4c61-800d-96d9e5827b6a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d96e075b-d8fc-4849-9de2-6b327e18857a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M36.8921604S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5c5010ab-23f7-498f-8b18-3919ad139c9b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a96c6191-1d7c-41aa-9e52-b477535c2556"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M37.2515241S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9e84eacd-c67c-4466-973e-70c353eeed11"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "af659fab-b0c3-4b91-b7ca-d06dfaefcb20"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M37.595278S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7b867e0f-4c86-464b-b298-2eba8f446e99"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:10 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c11c115b-b13f-4291-ac40-aec41e2f146f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M37.9754887S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "30e660ff-8fed-4eaf-bb44-19dfc1fe1ca1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:10 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b7a7e086-b9b8-4deb-860e-1300863822c3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M38.3192646S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a955716f-686a-4240-8c1b-fd2818c5b6dd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "deb6de81-1cbc-4e5d-82bd-3b0491710def"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M38.7872429S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e5f4dd71-673a-4b8d-bed2-db9f535ee573"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "090f7878-c424-4139-9a12-4aae008094ad"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M39.1935S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "aa80ff8b-e467-46ad-aed1-0b68c769ba59"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9af9592d-8150-4f17-9316-5b592ad084cd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M39.6890657S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c3e5c248-9080-4b73-8816-55bb60a5cadb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "264620f1-5c3a-4fe9-962c-a17b49859acc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M40.0059978S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0d3ecc9d-800f-4c10-b161-3dc719180857"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "570ab56d-e922-4371-96be-5c44ecd886e0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M40.3974169S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6c4a4212-31ca-48e6-b5fd-a1d7d9ebc5b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d1ac4527-06cb-439d-870e-7b4c5946c68b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M40.7203333S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8cc840a7-60d0-4305-b250-743ff0edb37d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f27ffd8-b300-4e60-9b92-73209d0a0cd5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M41.0841659S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "83bd260f-d9af-4970-b4ab-eab54e05457a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5bad7967-7d32-4dd3-ba0a-5512d1fb2cc0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M41.4287089S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5520b4d6-4cc3-4d03-9c4e-5ea4b754f711"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b3e0ee42-72e6-468b-b84a-361f124ae310"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M41.8317385S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "21f92168-d3d6-4825-85ef-82210f73e0d4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b97aab0a-e903-4b7d-9d21-7e26fa16b519"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M42.1754949S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "79cc13a6-ae8f-41d5-8f28-f0c6e2baf14a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0501bac3-618a-4e9e-a331-05659d8f3845"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M42.5372948S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "fa951511-d9e8-40f3-9fb5-934647af7e52"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "78cbb683-228f-47ca-8ee1-b43ed4cc73c6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M42.863004S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8cd998b6-22d0-4796-a8d1-4f27045dc44f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "92cdce5b-0f95-4cae-8afc-7add8d51b118"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M43.1779315S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c0622bce-2ca2-40b5-af1b-3be78aa94359"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "adc98f40-5110-4ca5-9627-5160624e5487"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M43.4880144S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0cfe6936-0b5d-49b8-9a68-4951a3662cfa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:17 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "405fdc2a-9235-498e-9aaa-529ff832cc3a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M43.9723766S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "34ead1f1-3a52-4d85-b6ee-28ff251d9a65"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:17 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c4a9704-27c8-4005-82ed-76676abb2148"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M44.4099023S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "90687f01-9f81-465a-a2e6-c11fd1891bb7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1cff8424-49b2-4fc0-b3f5-237a10d4cbc8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M44.8474117S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bc7768ad-9ef5-4d6a-b2cc-c6dfaba8d713"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c7b7143-b335-4984-839d-0f9c98e685ba"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M45.2256653S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b4977a16-988f-45e5-a0dd-0dbb96c4a3ea"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fef600fd-eaf6-4275-a182-abcee496885c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M45.5850259S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "72125d9d-4b28-4e96-ae32-193dce57f2ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "76ab74f9-2707-4302-8692-86b6f579aad6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M45.9444407S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ca855320-b112-4b5b-a935-f4feb628a408"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85ddb4bb-a009-4f60-a7ed-fc6f320c6231"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M46.2516896S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b81b8d42-6425-4ee2-8de1-0a3a5108042c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "05137095-9cab-45c9-89c5-06b19db96bbe"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M46.611081S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "313cf7ff-678d-4287-a4f3-1c5753517627"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e30eb3f-075a-4c05-84b6-188ad7bc14d8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M47.0642058S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5aa06d86-7964-41b4-a4f3-aec2ffa40601"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63b8fbb1-0d0e-4b7a-bcfc-563e10cb1039"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M47.3943295S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0f339fba-b37a-4069-947a-16fd1eb4f0fe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e3013e33-ddad-4979-ad67-ddbce065bb69"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M47.7405397S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "97186749-4ebe-48b6-bc75-9b05062508e4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:21 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70f0e118-3a70-4f19-a1bf-c67e3e42364f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M48.0530252S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "07c1e80b-52a6-4255-83ec-c2124eb29e42"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:21 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38f63997-4b9d-4502-8ac1-c474deff4240"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M48.4436783S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4c85ba54-ba84-4bd5-ab47-6490fbfef3cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9703d1f1-0abd-41e5-a1ce-fddc9d6989f7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M48.8186663S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "eb3ce2fa-cbbd-4d16-925b-da713638c749"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2ee9b7a3-f488-4b0d-bd98-3942e40a2a36"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M49.2224768S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "83b8edfe-c831-431c-ae56-f8bdf92a255c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "151c3db5-c1d0-4a1f-aefd-9d24ec561b1e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M49.5974671S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c3e605dc-d371-4dfa-a129-e99505ec7f1c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8399a25c-0e51-44c6-ba45-560776f5f068"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M49.9099724S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4e7982a7-b0f7-43c3-be4f-5d871ab66028"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fa007352-0dcd-4fa0-8c28-722882f58467"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M50.2537484S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e557beb6-def7-4793-8de7-bcc6f8d2c70b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aee63ada-1721-420b-a8c6-0786012f5344"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M50.7537345S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "211b10e3-2b5e-4eeb-8520-9cf23e46344e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:24 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e643f926-a54d-438d-86bc-d7b40afa4375"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M51.1131818S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f47c22ea-dd5b-4fd9-9cb7-c124e355c72f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:24 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0e00cc09-c7ad-4c30-98f2-6c3eb0a6d0ec"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M51.486154S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b3cf9136-b110-468f-a343-d3bc62bf1e10"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7eaedde6-0861-4634-ab90-dd797a7a21ad"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M51.8006278S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c5041d41-1d42-4e39-b181-beb4c7b2baea"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "26bb9d7f-1981-4c85-9d9b-624a7bc9c3c0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M52.194543S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "3528e8b4-e98d-474f-8976-5383f7628550"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7c8cd00-2902-4e97-8f28-66a8e0743d32"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M52.5584437S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "352f6f18-a5d6-4f78-9f97-6daf7664fe3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f3397a2c-28f5-435a-a7fa-b4c53c96f5f2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M52.8656486S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e3461ed7-4f3f-49e0-83ed-3923e75721a0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5537721c-54b7-4d93-929f-62dcbc8b57c6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M53.2101888S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4fb03076-2a89-4ccc-8106-979832b470cf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b84e47b5-e290-468e-b324-5cd0a7b8b1a4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M53.5687861S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a1875171-d065-4efb-b33f-a197335950a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "01b2f77a-c287-4b99-88c6-618baa46b392"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M53.9549244S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "87670046-36cf-492e-bfc6-102c53958b7f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "47586ec1-8753-464e-96f5-205a94ac2f62"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M54.2875226S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7db6f92c-3864-4656-8432-890a9c274516"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6b863fc9-5f85-4b32-b183-77fadf557f6d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M54.6469221S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5206562a-edd2-4fbf-8297-6f80629979ca"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:28 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fe9f5089-9528-4112-b4c0-5eb5e16fae08"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M55.0531625S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "050c775c-6e34-46e0-ae42-078a3f37fec2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:28 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "58a48057-c12d-4b62-99c0-c1407f433192"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M55.4594221S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c09f37be-6c39-49d6-83fa-25820b2ddde5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "55d565a8-d26f-4a33-b253-6526659bb483"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M55.8475644S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0ab7e7e1-b4a0-444d-8678-81062608728e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7e7eedfb-7954-4c81-9f10-d5503fcfc188"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M56.1601167S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d8e6c4af-b96c-4249-bf82-0c6548a009f2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29b093b0-5861-4860-bfdf-cd18f58ecafd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M56.5844443S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "29dbc630-5e32-4bce-9d8a-a18f16b8f956"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:30 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aaa1e657-f716-458b-ae2f-59c743bf353f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M56.928201S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7a819bb5-f46d-4139-91ee-b42486482db8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:30 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "800e0286-1936-4e98-9f9e-8ff13ddc0f19"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M57.2518556S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d271f465-339f-42d8-9d8e-6e20f58957fc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:30 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0506a5d2-97b4-46c0-9493-a812a1f5de5b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M57.5696837S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c44a5760-2ee9-424e-a399-6fb3e6c05db9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b29766e-b2b7-4083-9641-a0bce3f2fc1e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M57.8969888S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "27620b7e-fe39-404c-99e0-5b429f6e850e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ca6d01ff-961f-4bb9-9036-8c287cbc7aba"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M58.2250988S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a188561d-f06e-42e3-86c0-64f269a097fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f9d1116c-a08c-4acb-92dc-cc4cf9428255"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M58.5540549S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8904eda8-0921-4880-a8ba-b3ed8ba8195c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "28d4dc17-9ab3-43f2-b2a3-79b1ac87849a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M58.8813844S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "757dca09-3b7e-416a-870b-a60dc049f39f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:32 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "67f6caff-5b12-481d-831e-aaa5416bff64"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M59.1947123S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "3be3517e-e0c2-4167-9def-b826d7805fb5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:32 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f175432-b7ff-4e70-8a30-d0dfa86a8b51"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M59.615769S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2adcb872-b010-417b-ab83-4b5ee8650de5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "32d0bd1c-0dfe-470f-b95a-0b9371354797"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1M59.9439033S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "1f9df5b1-0bf5-4abc-9946-2e4316bb2a44"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a7f0f97-9581-4659-bfec-3de5bdfa9908"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M0.2675317S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e8aa2f94-63cc-4376-8486-204dab448a74"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fad3f0bf-a126-4771-a220-f9029bdb222d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M0.6626466S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7d66830c-63b7-4fee-a73c-7ba7b1d07cbe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5c4a30c9-b039-4e0c-baec-361b46e0546f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M1.0533194S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "37592119-5071-4a27-8d9d-f9ed9e17d84a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "012cf51a-e78d-408c-94c4-224d6338c0d5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M1.4908139S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0bdb3d92-5bb2-4fb3-b5e3-42dc28fd46f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "83a14690-efec-4f3d-81aa-3c25b47d3426"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M1.803313S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b54b03c7-8db5-4ad1-b34f-f112e644548a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:35 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ee5548d-697b-4ebe-acfc-554cd32a0156"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M2.1914383S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "666c6b48-11e5-424e-a16b-7bcc21ec1490"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:35 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c9dee40f-8f22-4da6-92bd-92f53d529b94"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M2.5175842S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4b62fc56-75c4-4966-a25b-f01c0bc41f6d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "353bc941-61b6-474f-a8e3-b0cf1eeb39ce"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M2.9595906S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "29f66a82-3b27-4192-849c-55254983b0fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b3151f25-b7ab-46a2-b734-b5897258a8f1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M3.3189798S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8a2e8cc8-1478-43b9-afbe-21f3e906f52e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "347bfd07-9cc3-40d6-a391-ac24e85203b7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M3.6635754S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "aff621fe-66d8-46eb-ac33-8c026b71cd9f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "00043677-5fbc-4221-a985-b1aa8f689a9f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M4.0064624S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "77571ade-7f5a-4539-8694-4ec16a190e60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fbf16267-e4bd-45fe-b950-ff7e3718ceb4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M4.3502421S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6256b59f-724c-45ce-9fd7-0275f25491b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ca8c6afd-61fa-4e1e-93b0-0d0a08a2b311"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M4.7832311S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "dc532041-ac29-4f32-8325-7614cb060f0a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "224468d2-c7a6-46b8-a9f3-10f65f1f3e18"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M5.115878S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6912343c-8fad-47e6-8d5f-866fee3b8e32"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "280e8c5f-4ff5-46aa-be08-c7e259ca5af2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M5.4395085S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "613c118e-26a5-4b0c-846f-c0d901d2738b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "57e469ad-6ef0-4782-89fb-7c2d244a82b4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M5.7676268S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d8f24597-f8cc-4a69-8d05-edb13de1647b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ca17046f-ff5f-4461-87ee-c8331c73b851"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M6.2104685S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "4bfcb84b-2c32-42d2-8f1e-35d6b3716506"
+ "d07c8c69-f0ef-4587-83f3-4ab8c488dda7"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "2bb29bf6-5eb4-4176-a40c-e66db4f6c54c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022517Z:2bb29bf6-5eb4-4176-a40c-e66db4f6c54c"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:17 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "230ce2e4-5b3e-40f9-a4a5-6619e434d1aa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M6.582133S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "95033274-b5a1-4e57-9f27-40fe463406c6"
+ "66a70eaa-bff2-4ac6-ab13-c8ca740dd1dc"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
- ],
- "x-ms-correlation-request-id": [
- "f0b5b50b-6b18-43b4-98ee-da7d215f900c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022518Z:f0b5b50b-6b18-43b4-98ee-da7d215f900c"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:18 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a67f85da-31fd-41fe-bc54-e04cd9cc7e3d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M6.9258676S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "db1f83e9-6917-4653-b1b6-ff0f49f1744e"
+ "abe710e3-1cab-4c01-ab00-497eafff5ee8"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-correlation-request-id": [
- "6264666e-a03e-47fa-a62d-7c63a74b18dc"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022519Z:6264666e-a03e-47fa-a62d-7c63a74b18dc"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:19 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "938dc82b-d7ba-41ff-affb-6ab9f0e7f42b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M7.2409263S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "a0a314c2-89ac-4fcc-aa9a-83c53ffa4557"
+ "82382ad2-e83f-4048-9f56-9bc74a13645c"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "bebff12c-9694-4f6d-a513-c1f012454d86"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022520Z:bebff12c-9694-4f6d-a513-c1f012454d86"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:19 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "af04e30e-7746-4349-b045-14c40afd221e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M7.582145S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "adafc3e6-6f5f-4dc8-816b-60d60c88c658"
+ "cd812388-5e75-4f77-a305-0cb731b355ad"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "fa520fe1-a46f-4f6a-9429-587f319f1b8e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022520Z:fa520fe1-a46f-4f6a-9429-587f319f1b8e"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:19 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d733261-cf2e-4204-be4c-307e7fdabd5d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M7.8926586S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "29dc78f2-69cc-4a9b-b3f1-68c934baae4f"
+ "434ae807-9dbb-4ddb-87b8-f590e28d1deb"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "15b92ade-bf5c-47a1-9272-7a20d484c462"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022521Z:15b92ade-bf5c-47a1-9272-7a20d484c462"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:20 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:41 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "be1e907a-711b-4b95-88b0-f2a8979b79ac"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M8.2877967S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "2424c0a2-43e6-4bcc-a299-f4a478cedc48"
+ "e34479cc-45bf-48e1-86ed-52910c3f94a2"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "1363e7be-b023-45b8-8429-057db21c9b87"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022522Z:1363e7be-b023-45b8-8429-057db21c9b87"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 07 Dec 2017 02:25:21 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
+ "no-store, no-cache, max-age=0, private"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Date": [
+ "Thu, 07 Jun 2018 12:52:41 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2c7a6664-1f7a-4068-97a8-cd0a696ba74c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M8.6446633S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "4864d46b-5bd5-40d5-9501-8111212f4782"
+ "588f216c-8692-41b1-ac67-acb77eac8949"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
- ],
- "x-ms-correlation-request-id": [
- "2fc2b144-a253-4890-b688-4739b904edf2"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022522Z:2fc2b144-a253-4890-b688-4739b904edf2"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:21 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eec8960a-3a77-49ad-9f58-c1f7d4424325"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M8.970831S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "b09ec3fa-502e-4245-8d95-c62f805f55ea"
+ "17df4e9e-6183-45a4-ad2a-b6f2e9be7cf8"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "8b563766-f9ca-4f1e-b989-773080131593"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022523Z:8b563766-f9ca-4f1e-b989-773080131593"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:22 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/74a2150e-ce00-4fa8-a111-86e0bf4b3fe30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83NGEyMTUwZS1jZTAwLTRmYTgtYTExMS04NmUwYmY0YjNmZTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6e77fec5-aaff-468a-b9a4-db561b0c0d02"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M9.2989575S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "22"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "6f132fba-6805-4cd2-a1e4-0dfc0d62e7d6"
+ "3eab7cf1-96ee-4346-b618-40556019d995"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "71087d36-df90-4b32-a7d8-f10dec40eb30"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T022524Z:71087d36-df90-4b32-a7d8-f10dec40eb30"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:25:23 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 12:52:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n },\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "522"
- ],
"x-ms-client-request-id": [
- "fc892ca8-b940-4c6b-8bd2-0d04c4881171"
+ "de898766-1c40-4efa-9f6e-1da63d96864a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M9.6949213S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6160,7 +17392,7 @@
"chunked"
],
"x-ms-request-id": [
- "518cf4ce-687f-42b6-8659-8676da7e3df4"
+ "33f8cd97-f2f6-4d1d-bc4d-c378cdeae316"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6172,31 +17404,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:27 GMT"
+ "Thu, 07 Jun 2018 12:52:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e12a326-c03d-41a5-9021-df6b00e8d20d"
+ "9db07cfe-1031-4262-88f2-b298d3bb9d84"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.3673642S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M10.0333148S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6208,7 +17440,7 @@
"chunked"
],
"x-ms-request-id": [
- "29464a7d-cb33-4f2e-9df0-0b927476eea7"
+ "6607b06a-d7bc-4bf6-b271-93e1f0750ca4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6220,31 +17452,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:27 GMT"
+ "Thu, 07 Jun 2018 12:52:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4878c57d-81ae-444f-83f5-b53176dd9c56"
+ "7043df0e-f0c6-45f1-8a83-cd3ab137031f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.0893864S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M10.4239636S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6256,7 +17488,7 @@
"chunked"
],
"x-ms-request-id": [
- "faa33909-84de-4da3-b7ff-f736d80a14fa"
+ "d1f6921b-3c5e-4e1c-bf92-3acf8e2c7183"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6268,31 +17500,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:28 GMT"
+ "Thu, 07 Jun 2018 12:52:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7935a62d-44e3-461e-9d7a-4db2ff850109"
+ "4109d774-d463-40ff-b11e-2c7fb6ada6c6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.3204925S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M10.7228275S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6304,7 +17536,7 @@
"chunked"
],
"x-ms-request-id": [
- "c0202a34-5a4d-4a8f-961b-f47d71fe3925"
+ "c931849d-4dce-4a84-b507-565d0c505d90"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6316,31 +17548,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:28 GMT"
+ "Thu, 07 Jun 2018 12:52:44 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "423f947c-4467-45e8-8787-7cb4e4259ef4"
+ "7a6e6e59-370d-42e0-a8e8-27735b2a54eb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.6550975S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M11.0534896S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6352,7 +17584,7 @@
"chunked"
],
"x-ms-request-id": [
- "1b892ae4-f005-4b6b-b348-bb537b081a51"
+ "9147b0f8-9758-4107-9606-db1fd758b9d5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6364,31 +17596,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:29 GMT"
+ "Thu, 07 Jun 2018 12:52:44 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ddeaeaaf-f42a-4317-9d27-1e22d450108b"
+ "bd097a8e-1c19-4d86-83a6-4daa90bb21ef"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.0269108S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M11.3947055S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6400,7 +17632,7 @@
"chunked"
],
"x-ms-request-id": [
- "bb37a6f7-5505-4161-b7a8-3d158e6f8dd1"
+ "620fca7c-9557-4d5b-9d13-db311aea3a85"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6412,31 +17644,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:29 GMT"
+ "Thu, 07 Jun 2018 12:52:44 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ddc8789-bd64-423f-a6cf-24600c7145a6"
+ "63f648cd-cfe9-4b39-bd8f-11341925c6b4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.2300449S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M11.7384652S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6448,7 +17680,7 @@
"chunked"
],
"x-ms-request-id": [
- "1aa7deed-6e10-48a2-8741-8cab6a5bf00f"
+ "692ceb4d-139e-4e2b-bd72-201c44e731d2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6460,31 +17692,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:29 GMT"
+ "Thu, 07 Jun 2018 12:52:45 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c900992-5e81-42f5-96d7-6eae1908ce0b"
+ "ae9c9438-5322-4fe2-9589-e3073b0d18a4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.4207434S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M12.1160247S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6496,7 +17728,7 @@
"chunked"
],
"x-ms-request-id": [
- "3dd289d8-b01b-4a46-8c7b-44fdced483b6"
+ "59eda536-6083-417d-a4bf-34e57e24bc2c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6508,31 +17740,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:29 GMT"
+ "Thu, 07 Jun 2018 12:52:45 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8881b565-40b8-48fb-8830-6bc619ef22da"
+ "0dc9975f-e147-4350-a77c-37aab4dd622b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.6050222S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M12.4259733S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6544,7 +17776,7 @@
"chunked"
],
"x-ms-request-id": [
- "ec18096c-ad2e-4091-9689-da19b495ef64"
+ "c5ff3f88-e06e-4d23-b2ec-7e73558390ac"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6556,31 +17788,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:29 GMT"
+ "Thu, 07 Jun 2018 12:52:45 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6cb2c8f-1085-4949-9a56-754d6dd1ba26"
+ "5cb7eeff-c03b-4a01-88e3-32e85d7a8716"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.8237917S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M12.7566321S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6592,7 +17824,7 @@
"chunked"
],
"x-ms-request-id": [
- "e5e77cf3-2959-4569-9c86-8598ae77fc7f"
+ "6c4ee935-e396-4d62-abfa-b0b1018f69ca"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6604,31 +17836,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:30 GMT"
+ "Thu, 07 Jun 2018 12:52:46 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "624f3774-7889-433b-9d77-3a9c8290384d"
+ "6196b474-84a8-48f3-9522-4fda19594bdc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.2004792S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M13.6317411S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6640,7 +17872,7 @@
"chunked"
],
"x-ms-request-id": [
- "0f5ca618-6252-4591-823e-f97e50be1490"
+ "2845413e-e43e-4814-a498-0fd64b386ea2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6652,31 +17884,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:30 GMT"
+ "Thu, 07 Jun 2018 12:52:46 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d7a8fe9d-5cd8-4571-b2d3-638e797f5b3b"
+ "eeead01d-f0b8-4f43-ab05-1eb66872e5e0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.4768048S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M13.9961139S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6688,7 +17920,7 @@
"chunked"
],
"x-ms-request-id": [
- "03d805c9-c2b0-4974-b083-e51a12cea2ed"
+ "ddcce42c-0bdf-480d-9b58-730d705694ed"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6700,31 +17932,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:30 GMT"
+ "Thu, 07 Jun 2018 12:52:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bfdf173b-0447-4701-8f83-c4e6c01d7ec6"
+ "656ed4f1-236e-4601-a184-c55cdb2267ab"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.655133S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M14.3166307S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6736,7 +17968,7 @@
"chunked"
],
"x-ms-request-id": [
- "c5f35c15-8e07-47e6-8450-7bf46fba6dfb"
+ "41aa0b0b-6ea2-4029-a7e9-05798200144a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6748,31 +17980,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:30 GMT"
+ "Thu, 07 Jun 2018 12:52:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79060316-cc5c-489e-8ff0-7577f098fce1"
+ "7ddd9a46-4fdf-4288-8687-8319470f0c80"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.8862823S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M15.6055187S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6784,7 +18016,7 @@
"chunked"
],
"x-ms-request-id": [
- "04de2c17-57ca-483e-8b4a-c6dc11401d7c"
+ "dfd47bfa-3c3b-4239-add5-0a1771c9ad2e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6796,31 +18028,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:31 GMT"
+ "Thu, 07 Jun 2018 12:52:48 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "daab6109-59bf-4784-b8c7-4ffd826067ed"
+ "a8fd96ba-c64c-42f6-a6d3-8ef3f6550c60"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.0705852S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M16.0535876S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6832,7 +18064,7 @@
"chunked"
],
"x-ms-request-id": [
- "9e5d2ad5-1a68-459a-8c91-f8ac82e1e160"
+ "08bc6499-7d78-4213-8714-f411525746b7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6844,31 +18076,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:31 GMT"
+ "Thu, 07 Jun 2018 12:52:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9eecab1-be5d-4f72-ac7a-1b37469798da"
+ "58e11db8-2c12-4c18-a0ef-6ef431baf307"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.2613088S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M16.3711532S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6880,7 +18112,7 @@
"chunked"
],
"x-ms-request-id": [
- "8aaf7041-73f8-4377-b3fa-cda5665b3182"
+ "b4f815f2-0c4b-4f3c-8dbd-16de95f57fc9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6892,31 +18124,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:31 GMT"
+ "Thu, 07 Jun 2018 12:52:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d224bdc5-b78a-403a-8595-026af7abf13c"
+ "b585b532-9c60-49a6-9dbd-b444499cfdd6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.448784S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M16.7888816S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6928,7 +18160,7 @@
"chunked"
],
"x-ms-request-id": [
- "4849a633-9367-4f1b-8b30-c113da133a91"
+ "d80a1051-db42-4953-ba35-f0377261cc60"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6940,31 +18172,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:31 GMT"
+ "Thu, 07 Jun 2018 12:52:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40d42010-bca3-4c32-b1a5-e9ce39a370f8"
+ "b050f133-05f5-4e47-a4cd-03ec58c120fb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.6519395S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M17.1638641S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -6976,7 +18208,7 @@
"chunked"
],
"x-ms-request-id": [
- "f935ea8f-431a-45d3-862b-d425683eb646"
+ "aa7ab0ad-8f32-473e-a7bb-d43fab7f5108"
],
"X-Content-Type-Options": [
"nosniff"
@@ -6988,31 +18220,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:31 GMT"
+ "Thu, 07 Jun 2018 12:52:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "119db785-8c62-442d-ac7c-e05295f9463a"
+ "c4488911-7ad9-4177-8ae4-0bec3c48cac9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.8674418S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M17.5067415S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7024,7 +18256,7 @@
"chunked"
],
"x-ms-request-id": [
- "c21d0cde-3c18-478b-86f7-4f7d57109898"
+ "4d30eca9-d248-4f6e-8a1f-1e449213554b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7036,31 +18268,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:32 GMT"
+ "Thu, 07 Jun 2018 12:52:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12004d98-afd2-40af-a212-d28c98c4223b"
+ "6e1ac4e5-c92e-4694-a105-d4a63b3e35e8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.0705869S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M17.8192304S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7072,7 +18304,7 @@
"chunked"
],
"x-ms-request-id": [
- "79774b59-ea56-42a8-ab90-4ff44db7c519"
+ "ed468851-fdf3-477d-9f82-4dba9c7a3890"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7084,31 +18316,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:32 GMT"
+ "Thu, 07 Jun 2018 12:52:51 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e8fc89d-0aea-4719-96c7-a8ed6d1cb234"
+ "35d8134c-8a91-49d3-9488-1583993cf8bc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.2645449S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M18.2732478S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7120,7 +18352,7 @@
"chunked"
],
"x-ms-request-id": [
- "5b6c0eaa-accf-4821-a2bd-958229df60e8"
+ "12a0b647-7536-4da8-acdf-f9ecc71dc08e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7132,31 +18364,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:32 GMT"
+ "Thu, 07 Jun 2018 12:52:51 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9303716-7e91-4e32-b211-e0f4a416b1c6"
+ "313dac8a-c6ce-4ea8-a7cb-b09f6a0b86e5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.4800411S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M18.5701276S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7168,7 +18400,7 @@
"chunked"
],
"x-ms-request-id": [
- "2b13d55b-1d48-4be1-8e06-f8332dd25544"
+ "c50d5627-a141-446e-aa60-1c0b5569ebe5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7180,31 +18412,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:32 GMT"
+ "Thu, 07 Jun 2018 12:52:51 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ff5b365-c8cd-4dcf-8dc3-4922de0af811"
+ "ec950880-964b-4923-a79c-813b691c1961"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6956017S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M18.9138859S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7216,7 +18448,7 @@
"chunked"
],
"x-ms-request-id": [
- "8eeb8972-6490-4249-b927-aafcdaa46659"
+ "976eda2a-1bb4-4c57-948c-7912ca2e2e98"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7228,31 +18460,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:32 GMT"
+ "Thu, 07 Jun 2018 12:52:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "611cc859-0741-459f-a068-039aa94dea7a"
+ "ef45c394-693c-44eb-bb4d-bc8795592599"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.8739563S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M19.3505118S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7264,7 +18496,7 @@
"chunked"
],
"x-ms-request-id": [
- "ca2a68c5-4d7e-4b5c-86fe-c1d1a50a99ba"
+ "17cece92-6acd-4f43-b09a-ac51383fe5f4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7276,31 +18508,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:33 GMT"
+ "Thu, 07 Jun 2018 12:52:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "785fd2b1-a0dc-4f0f-bc97-4d3176f5183a"
+ "be08cb75-7dd5-459c-8535-50f6b434214d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.0737955S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M19.7255437S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7312,7 +18544,7 @@
"chunked"
],
"x-ms-request-id": [
- "037da78a-3c90-447b-827f-57094335b2cc"
+ "18fc30e4-10b9-4bf4-9c45-342723d7dbb9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7324,31 +18556,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:33 GMT"
+ "Thu, 07 Jun 2018 12:52:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84440587-f84e-4e1a-8851-ae9cdb3f7aca"
+ "6dbcba41-91fc-4fc9-adde-4f7e01ff2cea"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.2645718S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M20.0536661S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7360,7 +18592,7 @@
"chunked"
],
"x-ms-request-id": [
- "97a5c581-dcd2-43ad-b7f9-c55c57c151aa"
+ "b873f2a2-9e3f-4167-9853-29b4d3c3890e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7372,31 +18604,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:33 GMT"
+ "Thu, 07 Jun 2018 12:52:53 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b327b09-d569-4c6b-9aad-884fedc83a66"
+ "cc5c1642-a01f-4d76-a358-17fabe406f2e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.4487985S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M20.3670236S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7408,7 +18640,7 @@
"chunked"
],
"x-ms-request-id": [
- "95f95751-bb00-43c7-8a02-d146b6e79d53"
+ "eec54b00-95e3-4aec-8c9d-b48c6a88d8d0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7420,31 +18652,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:33 GMT"
+ "Thu, 07 Jun 2018 12:52:53 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc8440e8-74eb-4545-bf8f-0752da705643"
+ "293a4e11-f75d-4dee-a7ec-f74ada0a2f8c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.6395697S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M20.6992967S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7456,7 +18688,7 @@
"chunked"
],
"x-ms-request-id": [
- "4e9a611d-39cb-4f2b-90b1-ebf4fd8f63c0"
+ "03ae1b84-9765-407f-9222-8e03a1746f74"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7468,31 +18700,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:33 GMT"
+ "Thu, 07 Jun 2018 12:52:53 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02f1a7a2-3d5b-4680-b663-3bd155bca4bd"
+ "56413fd8-e244-4fb8-86b0-a07a8860cf4b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.8238383S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M21.0274422S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7504,7 +18736,7 @@
"chunked"
],
"x-ms-request-id": [
- "e37b1859-18fe-4a51-a9d4-19f0705c3a88"
+ "6a1ce7b5-dc58-45be-9269-a84ed9446c18"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7516,31 +18748,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:33 GMT"
+ "Thu, 07 Jun 2018 12:52:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6cacd6d9-6b42-4229-b7a4-56184a3096c4"
+ "5e9700be-1833-4a9e-90be-36c848e50c5c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.0302165S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M21.36706S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7552,7 +18784,7 @@
"chunked"
],
"x-ms-request-id": [
- "bf7e9b86-e2eb-4551-bbae-6be754ce5717"
+ "82c76b13-9f18-4ee8-bae8-ba11178682b7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7564,31 +18796,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:34 GMT"
+ "Thu, 07 Jun 2018 12:52:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d28417e8-9a51-4a4b-ba13-adf0e5965354"
+ "71eec708-5f6a-4594-b19f-5dc23d3a7a26"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.2300727S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M21.7073737S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7600,7 +18832,7 @@
"chunked"
],
"x-ms-request-id": [
- "7a152e74-3618-4eb0-8fdb-b243fbb7befe"
+ "50c99333-9e38-4b50-b87c-b11fe69d3765"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7612,31 +18844,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:34 GMT"
+ "Thu, 07 Jun 2018 12:52:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df7f1702-1aab-4e08-9479-ca3560dc37c3"
+ "30ac44fc-e0a0-4e97-a03a-23ddea7495a8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.4175556S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M22.0545566S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7648,7 +18880,7 @@
"chunked"
],
"x-ms-request-id": [
- "e00df8a0-d811-4b96-9e12-b749b8818f07"
+ "3e97ef77-e4a1-41f3-bb49-e310aef12a17"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7660,31 +18892,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:34 GMT"
+ "Thu, 07 Jun 2018 12:52:55 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eee1f000-d212-4664-81d8-08c5539afcf8"
+ "907cd217-1d9b-43e8-ae33-4848dd862995"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.6050569S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M22.37122S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7696,7 +18928,7 @@
"chunked"
],
"x-ms-request-id": [
- "3e9e90a2-fe3c-4a89-869b-1b091db09b54"
+ "6847f288-bd2d-4831-b745-832981170056"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7708,31 +18940,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:34 GMT"
+ "Thu, 07 Jun 2018 12:52:55 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a58c04cf-f42e-4512-b8bf-11203c796489"
+ "db08ed7f-9c5e-4a46-a4a0-fb692ff38f19"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.8082021S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M22.6943412S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7744,7 +18976,7 @@
"chunked"
],
"x-ms-request-id": [
- "96199d35-6be6-4c4b-942f-7ef0662b6881"
+ "cd9179aa-1cb1-4f52-9ca1-66fd2c349506"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7756,31 +18988,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:35 GMT"
+ "Thu, 07 Jun 2018 12:52:55 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48df7246-82dc-4b59-b214-1eacb27d2e69"
+ "b8d43ed9-3873-4679-9a53-e07e484f0e94"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.1831861S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M23.1524434S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7792,7 +19024,7 @@
"chunked"
],
"x-ms-request-id": [
- "974e3acb-5b90-4a92-895e-c73e8ea7808c"
+ "207ea398-d7a3-469f-b429-2f8d100263f9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7804,31 +19036,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:35 GMT"
+ "Thu, 07 Jun 2018 12:52:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb05a3e2-8172-4f87-8391-ac5caf67c9fa"
+ "f74c5c09-a7b6-45ac-b4e4-bfd572729a54"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.3675536S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M23.5198995S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7840,7 +19072,7 @@
"chunked"
],
"x-ms-request-id": [
- "ed3ea7cc-a52b-49c5-917d-7b56c811a94d"
+ "3ca0a98e-b38d-4184-87f6-166bfc1992d2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7852,31 +19084,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:35 GMT"
+ "Thu, 07 Jun 2018 12:52:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9cead237-ed42-4f9c-b46a-7f4ab072952f"
+ "b6c524a8-6a49-4afa-b607-98cd5231a8d9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.5581913S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M23.8636375S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7888,7 +19120,7 @@
"chunked"
],
"x-ms-request-id": [
- "91b31c6c-039e-44d8-a998-f297bc95a403"
+ "96ace60e-8336-4b2d-a46c-455a5a93b93c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7900,31 +19132,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:35 GMT"
+ "Thu, 07 Jun 2018 12:52:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "976bd622-4ec2-48ea-b340-18fe23bd6892"
+ "ecc9f1a8-4f3d-43d2-8cbd-d15768f45bba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.7425551S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M24.3514847S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7936,7 +19168,7 @@
"chunked"
],
"x-ms-request-id": [
- "ebdf50e7-8ad6-4a54-9e62-48f70b3d26b1"
+ "44d7321a-0a9b-4e6c-a2b6-48f881a0fac9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7948,31 +19180,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:35 GMT"
+ "Thu, 07 Jun 2018 12:52:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "337f363a-e6bf-445d-940c-a2c8ed9e50a2"
+ "fc247ea8-7d61-48a1-a950-1f959b71a3be"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.950574S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M24.6952413S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -7984,7 +19216,7 @@
"chunked"
],
"x-ms-request-id": [
- "e70af228-d32a-4aba-a2f2-2d6ef9ed89ea"
+ "678758ea-831d-4ca5-9750-86d60d06aa5c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -7996,31 +19228,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:36 GMT"
+ "Thu, 07 Jun 2018 12:52:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43474d86-81d0-4c23-8a7c-d9e3e8e5b4db"
+ "e0417f88-60c2-435f-99c0-6dc87a06d7b7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.2613413S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M25.0335659S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8032,7 +19264,7 @@
"chunked"
],
"x-ms-request-id": [
- "c9802e9f-aae0-474f-a43a-cc04c893472b"
+ "8c6dbec1-acbf-4a74-a64d-2bf88d68fac4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8044,31 +19276,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:36 GMT"
+ "Thu, 07 Jun 2018 12:52:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4bc9b98f-f60c-424a-9686-fa9584cc9c5e"
+ "df70edea-c2e4-4ca5-817e-21e5d049c0c3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.4488417S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M25.4730373S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8080,7 +19312,7 @@
"chunked"
],
"x-ms-request-id": [
- "0f15f17e-5490-418f-aed7-0aacbac20e78"
+ "3ecf13d8-640f-4b99-a697-3bfff1a3bb94"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8092,31 +19324,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:36 GMT"
+ "Thu, 07 Jun 2018 12:52:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da8eb3e6-ff36-42ee-89db-d931b8f939ce"
+ "b3e15eb5-ca3a-4b31-9979-1aed5970176d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.6519514S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M25.8304532S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8128,7 +19360,7 @@
"chunked"
],
"x-ms-request-id": [
- "4e7d44f8-1e9a-409b-a163-34c99b03adaa"
+ "5c31653e-1b38-4b65-b229-40ba12358332"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8140,31 +19372,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:36 GMT"
+ "Thu, 07 Jun 2018 12:52:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd882921-34ce-4534-b8ac-c68a53757a51"
+ "38533aed-bfad-4c2c-b2b0-e7e7c06c0c84"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.8363164S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M26.1449587S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8176,7 +19408,7 @@
"chunked"
],
"x-ms-request-id": [
- "5111d489-3b44-48aa-9380-d9a2a8db2266"
+ "5cc35968-57ed-4358-a32d-dd7561323560"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8188,31 +19420,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:36 GMT"
+ "Thu, 07 Jun 2018 12:52:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "24facf0e-6cf7-49b7-b96b-6922ccc66b66"
+ "6d8f7d0b-ea6a-4e6a-bcf2-ede549acbe1a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.1050795S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M26.4806228S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8224,7 +19456,7 @@
"chunked"
],
"x-ms-request-id": [
- "807a05ac-9157-4963-b5ca-3426c432e2bc"
+ "3eba8207-f91a-49f4-ab73-f17f1119d356"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8236,31 +19468,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:37 GMT"
+ "Thu, 07 Jun 2018 12:52:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96b99f5f-7d8f-4c08-82ad-24df83f1a4a9"
+ "ae402201-eea9-45f2-9037-2c75dce9b7b6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.2925821S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M26.8480784S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8272,7 +19504,7 @@
"chunked"
],
"x-ms-request-id": [
- "c5af92be-f073-4a6b-a049-10e12c65cbbf"
+ "ca6245d1-d841-45da-8670-c3c3ea33282c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8284,31 +19516,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:37 GMT"
+ "Thu, 07 Jun 2018 12:53:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6721f363-2d3b-4663-955f-81c4c8498b43"
+ "0e07b3e3-2ed5-4f7c-a0ad-e12837bfd3b5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Scheduling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.2855842S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8320,7 +19552,7 @@
"chunked"
],
"x-ms-request-id": [
- "75226989-2d57-4bfd-810f-a63d504ede15"
+ "e0a93a07-1926-40d8-aab4-a8247c9bbb8b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8332,31 +19564,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:37 GMT"
+ "Thu, 07 Jun 2018 12:53:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6131f5fe-837d-4cf9-9073-59658626968f"
+ "e4e03563-5ad8-43ec-a63a-4a60b9a8ea4a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8368,7 +19600,7 @@
"chunked"
],
"x-ms-request-id": [
- "e9feb511-61fb-4850-9364-3ea1283e80ac"
+ "178adf01-8af5-4094-bcd6-3a4987578eaf"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8380,31 +19612,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:37 GMT"
+ "Thu, 07 Jun 2018 12:53:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63076467-0c92-41c3-94f7-eec8b0b5b860"
+ "2d100a84-7210-41ad-961e-8c6381e73683"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8416,7 +19648,7 @@
"chunked"
],
"x-ms-request-id": [
- "6504f4ed-cf67-4e76-a40b-b34f6179458f"
+ "31ec06d6-1d1a-4e63-89ce-b22a174c936f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8428,31 +19660,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:37 GMT"
+ "Thu, 07 Jun 2018 12:53:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "472ae013-9986-41e7-a923-31b1b3476a03"
+ "0b595c39-5e23-493c-b731-094440c49b29"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8464,7 +19696,7 @@
"chunked"
],
"x-ms-request-id": [
- "58b3cabd-ecdd-4a9f-ac48-0958afb17f38"
+ "35c729bb-1bfe-4c0c-921c-dc9e4f786072"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8476,31 +19708,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:38 GMT"
+ "Thu, 07 Jun 2018 12:53:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c0c3770-f78d-4354-bc6c-1f3738b20625"
+ "0683ba32-caf3-4816-94a0-c828d884510e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8512,7 +19744,7 @@
"chunked"
],
"x-ms-request-id": [
- "6fcfced3-d74c-4407-8e69-c933d854d11e"
+ "0142c2f9-bf36-46e7-8557-0a430217ec87"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8524,31 +19756,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:38 GMT"
+ "Thu, 07 Jun 2018 12:53:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de897c01-ec09-4dbe-a2dd-898139382d0c"
+ "0bfee026-09db-41c1-9351-7131adf9765d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8560,7 +19792,7 @@
"chunked"
],
"x-ms-request-id": [
- "a1b04df1-117a-48ad-8941-38980315d97d"
+ "56e92dc5-c262-4a61-a6bb-53baa91a3b43"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8572,31 +19804,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:38 GMT"
+ "Thu, 07 Jun 2018 12:53:03 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff58e6ca-f80a-4a79-b623-31ba45515db5"
+ "c01dab80-488f-484c-8777-6f36702d7063"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8608,7 +19840,7 @@
"chunked"
],
"x-ms-request-id": [
- "f200abc7-a48f-4133-84b5-8930d777309e"
+ "00dcfdcc-ce5f-4425-9f77-1144f9ae8b50"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8620,31 +19852,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:38 GMT"
+ "Thu, 07 Jun 2018 12:53:03 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "07155bd5-b1ce-4bcd-9522-f90ba2b8e797"
+ "7715f378-037f-4ad5-9ffa-2d270cd45eb4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8656,7 +19888,7 @@
"chunked"
],
"x-ms-request-id": [
- "4be4a780-f987-4725-a800-9bd175cd3f98"
+ "96293bed-e58b-4948-bff8-6cc1c71f5253"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8668,31 +19900,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:38 GMT"
+ "Thu, 07 Jun 2018 12:53:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f572e4b-73c1-4956-9e1d-8715141c9536"
+ "e3fac795-f700-4267-9856-534bdf8f6ab2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8704,7 +19936,7 @@
"chunked"
],
"x-ms-request-id": [
- "a9205149-1b8d-44d0-9ae8-ae9496c4c480"
+ "bfd61a3b-5d07-4faa-a490-c08ab5e96a51"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8716,31 +19948,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:39 GMT"
+ "Thu, 07 Jun 2018 12:53:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ef1f481f-e5f6-45cf-837d-b14b53809e09"
+ "1669cb1a-ab4e-4a60-ae6f-19e7bba21e89"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8752,7 +19984,7 @@
"chunked"
],
"x-ms-request-id": [
- "b5b83a1c-6673-4460-978d-0eabb448a6ad"
+ "9cca2a6a-3d69-472d-99a7-895413c4489b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8764,31 +19996,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:39 GMT"
+ "Thu, 07 Jun 2018 12:53:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34a2d647-cb28-40cf-bdb0-4135db755535"
+ "1063dd56-6c88-4103-ba56-64cc15aa82de"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8800,7 +20032,7 @@
"chunked"
],
"x-ms-request-id": [
- "e3ba9905-172d-48d9-bfee-4821a5c199f3"
+ "d9687f11-cdcd-4842-aa35-bd68666fed55"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8812,31 +20044,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:39 GMT"
+ "Thu, 07 Jun 2018 12:53:05 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23b47af1-97f2-4f7a-92f8-245ab302b9d9"
+ "b72965ff-945a-4ff7-94a9-50784b3b8085"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8848,7 +20080,7 @@
"chunked"
],
"x-ms-request-id": [
- "b26da556-c5be-4223-85dc-2b9932aaa11a"
+ "683ca4f3-2164-4fcc-a148-deec3ea9dbf2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8860,31 +20092,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:39 GMT"
+ "Thu, 07 Jun 2018 12:53:05 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53c2bc69-508d-4304-8261-90283758fa43"
+ "2ef83538-c7ee-4bc7-80cf-0b80e8d784b0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8896,7 +20128,7 @@
"chunked"
],
"x-ms-request-id": [
- "22dfd69f-3e2f-4960-8412-af1511ce3b41"
+ "48d761dd-e0e7-408c-8b42-1f07135dbe9b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8908,31 +20140,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:39 GMT"
+ "Thu, 07 Jun 2018 12:53:05 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "119f29a7-3793-4b01-b00a-62ec2213dbea"
+ "4359fa55-73f0-4b89-8761-21bbc22eb012"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8944,7 +20176,7 @@
"chunked"
],
"x-ms-request-id": [
- "2f34cfe3-be6a-4f7a-a1f2-45ebe688213b"
+ "6e5b74c9-8c2d-47b0-8e0a-f04704de52f1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -8956,31 +20188,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:40 GMT"
+ "Thu, 07 Jun 2018 12:53:06 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce4c1285-cb59-41db-924b-d4637a304827"
+ "52754eab-575d-4179-971d-95c9a5ffbd23"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -8992,7 +20224,7 @@
"chunked"
],
"x-ms-request-id": [
- "dbd112d0-585f-4d8d-808c-08664348f36d"
+ "66e0dd4a-ca5d-449a-81ee-c703dd882297"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9004,31 +20236,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:40 GMT"
+ "Thu, 07 Jun 2018 12:53:06 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0dad080-f061-48cc-bb72-a1cf5b58fec0"
+ "d878fcd0-2a6a-41ca-ba78-87b7130cea2f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9040,7 +20272,7 @@
"chunked"
],
"x-ms-request-id": [
- "6a28a064-ec5c-4266-a796-6c8336e5ad73"
+ "0c6ea3e0-7447-482a-94ab-bf440905306d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9052,31 +20284,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:40 GMT"
+ "Thu, 07 Jun 2018 12:53:07 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c905411-100b-496c-97a3-67f069f8b411"
+ "686cdc7b-35ac-4dc9-bb9b-59a5899ad8f1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0.4784614S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9088,7 +20320,7 @@
"chunked"
],
"x-ms-request-id": [
- "2e9cef6f-64ef-4879-a86a-705ca9c3d397"
+ "8fddb97b-be2d-41c6-91e9-0086769c975f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9100,31 +20332,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:40 GMT"
+ "Thu, 07 Jun 2018 12:53:07 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96eb0f97-7976-4add-9c14-c43bb40691ff"
+ "ef3dfc41-c379-4270-9c63-a1a565cabd11"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0.8283953S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9136,7 +20368,7 @@
"chunked"
],
"x-ms-request-id": [
- "52b9889e-30f7-4f9d-8229-896ba7d10a8d"
+ "13e6244f-090a-451f-a46f-d54ae7802a73"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9148,31 +20380,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:41 GMT"
+ "Thu, 07 Jun 2018 12:53:07 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a1cf379-db6d-47a4-88ac-a9d6fbcbc5da"
+ "21adb073-a5d6-4858-a879-31b73b0c61d2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT1.207989S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9184,7 +20416,7 @@
"chunked"
],
"x-ms-request-id": [
- "d6596a22-81db-472f-b85f-a54d94889420"
+ "a782f7ba-6eba-4534-89de-8e41f075bb83"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9196,31 +20428,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:41 GMT"
+ "Thu, 07 Jun 2018 12:53:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4bd2f294-6ff5-42fc-af9f-8d17d6593a30"
+ "551da2db-c81c-49f9-9482-7d7f2e8acf1d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT1.6142691S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9232,7 +20464,7 @@
"chunked"
],
"x-ms-request-id": [
- "4d581126-19a8-4a12-b13b-f1a651e8ade1"
+ "773dbb3a-2baf-4e75-bb12-54cdbdde2439"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9244,31 +20476,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:41 GMT"
+ "Thu, 07 Jun 2018 12:53:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d145b44e-a018-433b-abe8-420d9d5cb8e9"
+ "7d73b208-53df-40aa-9e55-9d7c5d2832a0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT2.1429039S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9280,7 +20512,7 @@
"chunked"
],
"x-ms-request-id": [
- "1a353a9a-1716-4bba-b8b5-04a47d8a3844"
+ "48751655-795e-43c7-914a-66d1b106484a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9292,31 +20524,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:41 GMT"
+ "Thu, 07 Jun 2018 12:53:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "492eb16a-986a-4bc4-a2ab-4880ec4dd3bd"
+ "e3b61743-2a23-4fc8-9a05-02f82f4d6418"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0.0769019S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT2.5097486S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9328,7 +20560,7 @@
"chunked"
],
"x-ms-request-id": [
- "dff82331-5f06-4e3d-b409-e3eb583eeda7"
+ "8de9763e-2013-4d30-adf1-fc76d14b8dfb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9340,31 +20572,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:41 GMT"
+ "Thu, 07 Jun 2018 12:53:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d559574d-d7c8-4b94-81c5-ec5687801a4c"
+ "79ece91f-d730-49a5-a59e-8bc34b1976e9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0.2800113S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT2.8772822S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9376,7 +20608,7 @@
"chunked"
],
"x-ms-request-id": [
- "8185778e-f39b-4bd3-877a-1f8bc8b7c516"
+ "f0ca0dd9-b641-42c2-82cc-89767841162b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9388,31 +20620,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:42 GMT"
+ "Thu, 07 Jun 2018 12:53:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0671c9f8-6284-4cd3-bb70-ba668975725b"
+ "dc5502ae-15f7-486b-97e2-03402f8a64df"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0.4798039S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT3.2714326S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9424,7 +20656,7 @@
"chunked"
],
"x-ms-request-id": [
- "445c4868-0a30-450a-a3f9-a3a31bdb0c96"
+ "b5938c7f-0ae8-445b-968c-afb9296948db"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9436,31 +20668,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:42 GMT"
+ "Thu, 07 Jun 2018 12:53:10 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "35f75f11-9bda-4d53-ae5c-90c1d29d1d10"
+ "66b00fa7-d3f7-4494-8239-8c4c8c212346"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0.7110986S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT3.6096942S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9472,7 +20704,7 @@
"chunked"
],
"x-ms-request-id": [
- "60eea4e3-0520-4857-9eea-9a07ab7b52ee"
+ "7e371a01-8fa2-4f08-a72c-e1b7d7aad4b4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9484,31 +20716,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:42 GMT"
+ "Thu, 07 Jun 2018 12:53:10 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f407dc9-19cb-49be-94b8-40bc608373df"
+ "bc1ab2fc-ec87-4fa0-b528-b755f9f0c4c6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT0.9298566S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT4.0491792S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9520,7 +20752,7 @@
"chunked"
],
"x-ms-request-id": [
- "8946263d-d25d-4c0d-9284-6118d5b339e6"
+ "8c7f36cd-519c-46e4-81b3-c6d6694753ae"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9532,31 +20764,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:42 GMT"
+ "Thu, 07 Jun 2018 12:53:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9c89e60-9bbe-41ea-8541-acf9fffa8088"
+ "6fc59afe-7b52-4409-830e-ecf42f107417"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT1.1173674S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT4.392935S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9568,7 +20800,7 @@
"chunked"
],
"x-ms-request-id": [
- "36ab4df7-10d0-4dfa-8963-76539b3027d4"
+ "d3a584e2-dd88-44ec-a288-48535d89bcb5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9580,31 +20812,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:42 GMT"
+ "Thu, 07 Jun 2018 12:53:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d14072bb-7923-40f0-9501-6b67a64bd7a5"
+ "32a47bca-bfbe-4d1c-81e3-54481bf7195f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT1.3204684S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT4.7815859S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9616,7 +20848,7 @@
"chunked"
],
"x-ms-request-id": [
- "ce8aeaa6-a3c0-4751-bcf0-5d2b028b8e8f"
+ "9d84abae-61c2-4723-a17d-9c023f8d7e66"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9628,31 +20860,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:43 GMT"
+ "Thu, 07 Jun 2018 12:53:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "38e1d351-2910-4b82-8670-b1e46bed8fe0"
+ "a69ed6f5-6205-43ed-831d-fcd191faaadd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT1.5235973S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT5.1972708S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9664,7 +20896,7 @@
"chunked"
],
"x-ms-request-id": [
- "b662964f-8846-46b6-acfd-dfcf0811619d"
+ "0666825a-de0f-43f6-99be-fdc0b4c800a6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9676,31 +20908,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:43 GMT"
+ "Thu, 07 Jun 2018 12:53:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99354891-7ba0-4ff0-a886-afb370781e3b"
+ "9f90e696-af4e-483b-80b3-3a81ac6418a2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT1.7766651S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT5.5804525S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9712,7 +20944,7 @@
"chunked"
],
"x-ms-request-id": [
- "8e6f377a-3964-4662-92e9-2f4601f29736"
+ "617b82dc-4cb5-485b-b68a-4d1ccb36a65c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9724,31 +20956,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:43 GMT"
+ "Thu, 07 Jun 2018 12:53:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae5ad25e-7b6b-464f-b4ad-87269ec94963"
+ "e39ec5b7-00df-4049-a5e6-9378ecfdabb6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT1.9797898S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT5.906635S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9760,7 +20992,7 @@
"chunked"
],
"x-ms-request-id": [
- "1567b281-e7aa-4d74-8135-40a61a9c7c44"
+ "1f2e67f0-50cc-40eb-a80f-f45ba81aeecc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9772,31 +21004,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:43 GMT"
+ "Thu, 07 Jun 2018 12:53:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7777b524-a124-44ad-925d-3b247fd5d3f9"
+ "50134b93-3b0f-4692-8c03-d2c9bd77dc65"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT2.182917S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT6.2972654S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9808,7 +21040,7 @@
"chunked"
],
"x-ms-request-id": [
- "f19b420e-7084-45d1-bef5-020d09ff4061"
+ "a6ec01f7-f94a-49c6-8fbc-fbe5ed44de71"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9820,31 +21052,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:43 GMT"
+ "Thu, 07 Jun 2018 12:53:13 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36bb7418-1e79-4bd8-8d2e-69712c4d9ce7"
+ "fa39a0fd-5643-4962-9926-c669a973fcb3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT2.3986177S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT6.6898465S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9856,7 +21088,7 @@
"chunked"
],
"x-ms-request-id": [
- "c7a3eed4-8dd4-4037-9d3a-7d465eb56c56"
+ "df934a21-e02b-45e8-8420-751f58248daf"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9868,31 +21100,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:44 GMT"
+ "Thu, 07 Jun 2018 12:53:13 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3254fe95-3b5a-4a5c-9877-b4bd3ab5afba"
+ "9e062800-d7a0-4ccb-8bbf-def24fd410c5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT2.604812S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT7.0472705S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9904,7 +21136,7 @@
"chunked"
],
"x-ms-request-id": [
- "6ac8be98-b909-4937-99f4-8c9945a9d24c"
+ "a06a34e8-e99e-4ff8-9881-bf878af5ee9d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9916,31 +21148,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:44 GMT"
+ "Thu, 07 Jun 2018 12:53:14 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48c9abd6-d497-4495-8159-a8af836bdf65"
+ "17b2001f-4c2d-48f9-9c0b-ba4283ef00ca"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT2.8079457S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT7.50498S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -9952,7 +21184,7 @@
"chunked"
],
"x-ms-request-id": [
- "425c2397-dcbf-4f8f-ad3f-60ba576efc84"
+ "4d5215b4-9675-488b-80a5-a84e19baff08"
],
"X-Content-Type-Options": [
"nosniff"
@@ -9964,31 +21196,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:44 GMT"
+ "Thu, 07 Jun 2018 12:53:14 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4f4b1da3-3ea8-413c-aae3-f1098fe508e3"
+ "75a69815-7c0a-4f1a-827c-a1dc00323ce4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT3.3235755S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT7.8285138S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10000,7 +21232,7 @@
"chunked"
],
"x-ms-request-id": [
- "f6d02bfe-6e49-44a9-8444-c7c530de20bf"
+ "4da34145-8f73-4fee-9034-a9e47f9622ae"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10012,31 +21244,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:45 GMT"
+ "Thu, 07 Jun 2018 12:53:14 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62ca50f5-6d56-4f61-b8f9-35571fd7bcf2"
+ "820e45e2-ca27-4e53-8190-73e2cff08982"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT3.7332246S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT8.2549967S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10048,7 +21280,7 @@
"chunked"
],
"x-ms-request-id": [
- "afeede35-3e71-49c7-91c7-3f31c9bdfc5e"
+ "bbcf4ad8-5450-4048-a649-54036471c645"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10060,31 +21292,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:45 GMT"
+ "Thu, 07 Jun 2018 12:53:15 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8697ca5a-d675-458d-a9c1-670892c0336e"
+ "faf87b00-73b9-4f50-be2d-e7d2520e8ab2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT3.9347913S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT8.583128S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10096,7 +21328,7 @@
"chunked"
],
"x-ms-request-id": [
- "4cdf9dd8-3e74-43e0-9c16-0c0c7b8e2135"
+ "29c72ef4-1426-4de2-979a-d10b55859881"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10108,31 +21340,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:45 GMT"
+ "Thu, 07 Jun 2018 12:53:15 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00903f0c-f0df-45af-ac60-5b176cc7437d"
+ "7f229c37-e6e9-4de0-9f75-fe0a684d56de"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT4.1516796S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT8.973761S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10144,7 +21376,7 @@
"chunked"
],
"x-ms-request-id": [
- "c75befd7-5a46-4478-be49-27ffa3e83694"
+ "79db98ab-64bf-48c2-878b-afe942fdaf9d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10156,31 +21388,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:45 GMT"
+ "Thu, 07 Jun 2018 12:53:15 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb9cea31-6edb-471f-83a8-8ef8e96676d3"
+ "141a7980-f391-4e92-b5d5-2974c8158a89"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT4.373861S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT9.3175181S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10192,7 +21424,7 @@
"chunked"
],
"x-ms-request-id": [
- "8b13564c-aef2-4b7a-a67b-d5fe02cd9197"
+ "fbbcfd39-2149-403b-81fa-40834a449486"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10204,31 +21436,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:46 GMT"
+ "Thu, 07 Jun 2018 12:53:16 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3ff810b-cd59-49d2-9680-e298ad7bdd6e"
+ "b9582493-5a3d-4ffb-8af5-4949d69e3fc0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT4.6517019S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT9.6566677S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10240,7 +21472,7 @@
"chunked"
],
"x-ms-request-id": [
- "efaa53c8-be3f-462b-aba3-03309d5d8722"
+ "457a7284-4845-478f-bcf5-4a6176e13a2b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10252,31 +21484,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:46 GMT"
+ "Thu, 07 Jun 2018 12:53:16 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0bcb5a29-a02f-4820-b1cd-792a6c7a282b"
+ "4550fd8b-608b-4704-ac8d-a0f4f92af3b5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT4.8738518S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT10.1410544S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10288,7 +21520,7 @@
"chunked"
],
"x-ms-request-id": [
- "1e171c91-7375-4aaf-9c2d-428e351dbb0f"
+ "f95a91f2-b9f0-4d81-a5fc-e7becb4d04fc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10300,31 +21532,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:46 GMT"
+ "Thu, 07 Jun 2018 12:53:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6596619e-da76-4f4c-8be9-9b638732656f"
+ "820d95ab-5646-4042-8e44-f7db1a93cfbf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT5.1048308S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT10.6300442S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10336,7 +21568,7 @@
"chunked"
],
"x-ms-request-id": [
- "b5332a94-2a3b-4dfe-a9ef-c82359480a3e"
+ "5e632bd9-9485-4f3a-b31b-0fb4f7d02df3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10348,31 +21580,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:46 GMT"
+ "Thu, 07 Jun 2018 12:53:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36a23ade-1fd6-4c29-bdfb-824d514c3918"
+ "10d2b6d5-250e-4ba7-997b-237052afe8e2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT5.3079564S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT10.974742S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10384,7 +21616,7 @@
"chunked"
],
"x-ms-request-id": [
- "9094e1b2-306f-48fe-87c4-3781ea3100f8"
+ "e6996c55-dc92-438b-b2b9-454807c85f6d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10396,31 +21628,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:46 GMT"
+ "Thu, 07 Jun 2018 12:53:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db8f428d-d5a3-4824-a8ca-284be846aa1b"
+ "e88f13cb-42dc-4744-9e21-06d97ff1e1d7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT5.5080553S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT11.3341248S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10432,7 +21664,7 @@
"chunked"
],
"x-ms-request-id": [
- "594cf3c8-40e9-4be8-be2a-ab3a16f5416c"
+ "e957e938-5fd6-416d-bc9c-c60b4137ba0d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10444,31 +21676,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:47 GMT"
+ "Thu, 07 Jun 2018 12:53:18 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ab423c6-aa25-43eb-b4cb-a795c8d0a38c"
+ "6141184e-9986-43c6-bfea-ee0d5b497879"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT5.7142091S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT11.6723448S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10480,7 +21712,7 @@
"chunked"
],
"x-ms-request-id": [
- "4c127b71-57b6-4ab2-80aa-95da98e088a8"
+ "bce27749-7857-43ee-ba6b-1dc23121a174"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10492,31 +21724,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:47 GMT"
+ "Thu, 07 Jun 2018 12:53:18 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c7d02e6c-3378-4c21-a65d-7a7d7f237559"
+ "53d3f2a2-6d36-4187-883a-9f3d3dcea87a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT5.9207705S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT12.0519492S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10528,7 +21760,7 @@
"chunked"
],
"x-ms-request-id": [
- "8b716d4e-7c10-481b-a42c-a346f20af866"
+ "d3c97079-03c2-417d-8cf2-77d1a60f4677"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10540,31 +21772,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:47 GMT"
+ "Thu, 07 Jun 2018 12:53:19 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffe6a1d2-aafe-40f1-8e9f-00c57f0be4d9"
+ "cab0f58f-e80f-42d8-b06d-91914bb3f15b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT6.1204444S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT12.4582075S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10576,7 +21808,7 @@
"chunked"
],
"x-ms-request-id": [
- "6003e9ed-87b9-4c03-9d14-386336ba0625"
+ "05619f27-3a8e-4792-926a-409fb7c6718f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10588,31 +21820,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:47 GMT"
+ "Thu, 07 Jun 2018 12:53:19 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d65affa9-0268-4906-a124-25ead54cb3fe"
+ "15ec28bb-26c1-42d6-aabf-70ba4a7fc6a1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT6.3426579S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT12.78728S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10624,7 +21856,7 @@
"chunked"
],
"x-ms-request-id": [
- "267cda22-a384-4802-b04f-9bcac433b883"
+ "b3c6d2ad-6307-4963-8100-5e44af248206"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10636,31 +21868,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:48 GMT"
+ "Thu, 07 Jun 2018 12:53:19 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5323ebdc-3c4e-499e-806d-2b298ad4946f"
+ "94e5106d-ffb4-4003-a358-28707339e6ea"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT6.5423407S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT13.1879745S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10672,7 +21904,7 @@
"chunked"
],
"x-ms-request-id": [
- "aa84e770-c14d-488a-bfa0-5104aaa55202"
+ "9409e500-7f25-4687-a3a5-0d6626922213"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10684,31 +21916,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:48 GMT"
+ "Thu, 07 Jun 2018 12:53:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b97d301-94c9-47b5-a41a-4d1b5807a334"
+ "97d18439-9257-4aa2-9a61-f18e5c2d7844"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT6.7454491S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT13.5630102S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10720,7 +21952,7 @@
"chunked"
],
"x-ms-request-id": [
- "2321cee9-7cef-4e51-8026-b637ef813383"
+ "95d3143f-a9f9-4327-a1f3-ea982218ed51"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10732,31 +21964,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:48 GMT"
+ "Thu, 07 Jun 2018 12:53:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "46fd7f92-f4b0-45c1-a11b-0278b40f053a"
+ "a814832e-cabb-4cec-b365-922fc1f2625e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT6.9641997S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT13.9317229S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10768,7 +22000,7 @@
"chunked"
],
"x-ms-request-id": [
- "ca46bdcf-3462-40d5-bd80-0305fff143a5"
+ "525cdcd4-d223-4002-ba4b-4da048e17199"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10780,31 +22012,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:48 GMT"
+ "Thu, 07 Jun 2018 12:53:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ece9815-b91a-4053-b530-0e7156ccd75e"
+ "cecd8552-0fe2-4ad0-915c-fadcc51152a4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT7.2645276S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT14.3462172S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10816,7 +22048,7 @@
"chunked"
],
"x-ms-request-id": [
- "07331f8a-1ad7-4e83-ae84-92c1827c7ae5"
+ "de91fc08-1c44-4439-83b6-4793b460f4b1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10828,31 +22060,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:49 GMT"
+ "Thu, 07 Jun 2018 12:53:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6bb85f5d-9337-4baf-9f19-e00d80758182?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJiODVmNWQtOTMzNy00YmFmLTlmMTktZTAwZDgwNzU4MTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvOWFhZDRhOGQtNGFmOS00MWViLWFjMGQtMzVlNjFjYTllYTgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0726a54c-5a7a-42f0-8808-80f5b0847387"
+ "620ba3fd-67a6-43b1-a0be-e22d4cda9434"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"endTime\": \"2017-12-06T18:30:49.5425749-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T18:30:27.604557-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T18:30:37.9954141-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0110404-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4b1b7a61-657a-4668-8186-38052a42333a\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T18:30:38.0266645-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-12-06T18:30:49.5425749-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"4b1b7a61-657a-4668-8186-38052a42333a\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9971.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/02/30/6bb85f5d-9337-4baf-9f19-e00d80758182/algebra.xml\",\r\n \"yarnApplicationId\": 1024974,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.3908571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156263S\",\r\n \"totalRunningTime\": \"PT7.0783079S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"endTime\": \"2018-06-07T20:53:21.9697918+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T20:50:33.5611648+08:00\",\r\n \"details\": \"Compilation:02aacb45-1453-4b3d-9e7f-1fb65aceefe9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.8914415+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9070492+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:8198a9be-de29-46b1-ba83-900a51e46882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T20:53:00.9226936+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-06-07T20:53:21.9697918+08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"8198a9be-de29-46b1-ba83-900a51e46882\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps8883.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/12/50/9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81/algebra.xml\",\r\n \"yarnApplicationId\": 1722362,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2M27.3302767S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT14.2501705S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10864,7 +22096,7 @@
"chunked"
],
"x-ms-request-id": [
- "80bd4e59-91f7-422a-b7d2-f48515d3c2a1"
+ "289ddbfa-6366-4add-a824-20171ecbedbe"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10876,31 +22108,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:49 GMT"
+ "Thu, 07 Jun 2018 12:53:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=related/pipelineId%20eq%20guid'baee8691-ea2d-4282-9953-dfd14a0e7d34'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1yZWxhdGVkL3BpcGVsaW5lSWQlMjBlcSUyMGd1aWQnYmFlZTg2OTEtZWEyZC00MjgyLTk5NTMtZGZkMTRhMGU3ZDM0JyYkb3JkZXJieT1zdWJtaXRUaW1lJTIwZGVzYyZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs?$filter=related/pipelineId%20eq%20guid'62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1yZWxhdGVkL3BpcGVsaW5lSWQlMjBlcSUyMGd1aWQnNjJlNzlmNGUtM2RkMy00YmQ0LTk3MTctYmJmYzBjZGE4M2Q3JyYkb3JkZXJieT1zdWJtaXRUaW1lJTIwZGVzYyZhcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6eadf5c-fb62-480e-828e-212db9889104"
+ "ebf80b68-8798-4cec-9144-10bf86a8d20f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"endTime\": \"2017-12-06T18:30:49.5425749-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"endTime\": \"2018-06-07T20:53:21.9697918+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10912,7 +22144,7 @@
"chunked"
],
"x-ms-request-id": [
- "c54206be-fe29-43a5-9975-e0721f2eb583"
+ "a076dc8d-844e-4f95-a4da-19e62e20c646"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10924,31 +22156,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:49 GMT"
+ "Thu, 07 Jun 2018 12:53:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=related/recurrenceId%20eq%20guid'a6434d7f-401b-41b2-9a5b-776993416db7'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1yZWxhdGVkL3JlY3VycmVuY2VJZCUyMGVxJTIwZ3VpZCdhNjQzNGQ3Zi00MDFiLTQxYjItOWE1Yi03NzY5OTM0MTZkYjcnJiRvcmRlcmJ5PXN1Ym1pdFRpbWUlMjBkZXNjJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs?$filter=related/recurrenceId%20eq%20guid'ea2df5c8-2e38-46a3-af06-74c08f7335d3'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1yZWxhdGVkL3JlY3VycmVuY2VJZCUyMGVxJTIwZ3VpZCdlYTJkZjVjOC0yZTM4LTQ2YTMtYWYwNi03NGMwOGY3MzM1ZDMnJiRvcmRlcmJ5PXN1Ym1pdFRpbWUlMjBkZXNjJmFwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e93b353e-42e5-4110-aaf9-8f85aaeff827"
+ "74453eaf-1861-4508-ad94-04c10da703f2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"6bb85f5d-9337-4baf-9f19-e00d80758182\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"startTime\": \"2017-12-06T18:30:42.464267-08:00\",\r\n \"endTime\": \"2017-12-06T18:30:49.5425749-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"startTime\": \"2018-06-07T20:53:07.7196213+08:00\",\r\n \"endTime\": \"2018-06-07T20:53:21.9697918+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -10960,7 +22192,7 @@
"chunked"
],
"x-ms-request-id": [
- "52a70257-363e-47f8-9409-b632dffd928e"
+ "ff04d8f9-b4e8-46f1-8869-5bdd92ad985e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -10972,31 +22204,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:49 GMT"
+ "Thu, 07 Jun 2018 12:53:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/recurrences?api-version=2016-11-01",
- "EncodedRequestUri": "L3JlY3VycmVuY2VzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/recurrences?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3JlY3VycmVuY2VzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "471442eb-1891-4a79-a0ef-a29a22625754"
+ "717427d0-9142-4b00-946d-50244e20c2bc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0019661966388888888,\r\n \"lastSubmitTime\": \"2017-12-06T18:30:27.2607978-08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0039583806944444438,\r\n \"lastSubmitTime\": \"2018-06-07T20:50:33.201785+08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -11008,7 +22240,7 @@
"chunked"
],
"x-ms-request-id": [
- "987a4f85-8fd0-43c2-97f0-b0751b68e9e2"
+ "8820e17c-2f24-42a9-a63c-1becc2258a32"
],
"X-Content-Type-Options": [
"nosniff"
@@ -11020,31 +22252,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:49 GMT"
+ "Thu, 07 Jun 2018 12:53:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/recurrences/a6434d7f-401b-41b2-9a5b-776993416db7?api-version=2016-11-01",
- "EncodedRequestUri": "L3JlY3VycmVuY2VzL2E2NDM0ZDdmLTQwMWItNDFiMi05YTViLTc3Njk5MzQxNmRiNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/recurrences/ea2df5c8-2e38-46a3-af06-74c08f7335d3?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3JlY3VycmVuY2VzL2VhMmRmNWM4LTJlMzgtNDZhMy1hZjA2LTc0YzA4ZjczMzVkMz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd8c9809-6828-4037-ac9c-9d83f191cb93"
+ "d09a1431-e96e-4daf-ac9a-1940ecec3612"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"recurrenceId\": \"a6434d7f-401b-41b2-9a5b-776993416db7\",\r\n \"recurrenceName\": \"ps625\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0019661966388888888,\r\n \"lastSubmitTime\": \"2017-12-06T18:30:27.2607978-08:00\"\r\n}",
+ "ResponseBody": "{\r\n \"recurrenceId\": \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\",\r\n \"recurrenceName\": \"ps6999\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0039583806944444438,\r\n \"lastSubmitTime\": \"2018-06-07T20:50:33.201785+08:00\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -11056,7 +22288,7 @@
"chunked"
],
"x-ms-request-id": [
- "891d3435-349a-4038-b9e3-053714561eff"
+ "b7fc51ed-dea5-44df-83fd-ead8174795f8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -11068,31 +22300,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:51 GMT"
+ "Thu, 07 Jun 2018 12:53:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/pipelines?api-version=2016-11-01",
- "EncodedRequestUri": "L3BpcGVsaW5lcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/pipelines?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3BpcGVsaW5lcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a565b961-93da-49f6-8602-89e30006ed0d"
+ "12fe1af5-5540-41e9-83eb-30c6032b3dd6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0019661966388888888,\r\n \"lastSubmitTime\": \"2017-12-06T18:30:27.2607978-08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0039583806944444438,\r\n \"lastSubmitTime\": \"2018-06-07T20:50:33.201785+08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -11104,7 +22336,7 @@
"chunked"
],
"x-ms-request-id": [
- "8181f91f-c10b-46b5-bd41-b43bcc6cc848"
+ "61e57458-0303-4c1c-ad74-9b36cfbf05f1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -11116,31 +22348,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:51 GMT"
+ "Thu, 07 Jun 2018 12:53:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/pipelines/baee8691-ea2d-4282-9953-dfd14a0e7d34?api-version=2016-11-01",
- "EncodedRequestUri": "L3BpcGVsaW5lcy9iYWVlODY5MS1lYTJkLTQyODItOTk1My1kZmQxNGEwZTdkMzQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/pipelines/62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3BpcGVsaW5lcy82MmU3OWY0ZS0zZGQzLTRiZDQtOTcxNy1iYmZjMGNkYTgzZDc/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03db726b-5453-4635-9daf-05ae25548368"
+ "7d58e476-d5b6-4307-b2b5-a4978f5519fe"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"pipelineId\": \"baee8691-ea2d-4282-9953-dfd14a0e7d34\",\r\n \"pipelineName\": \"ps6678\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0019661966388888888,\r\n \"lastSubmitTime\": \"2017-12-06T18:30:27.2607978-08:00\",\r\n \"runs\": [\r\n {\r\n \"item1\": \"93e26511-dd17-4f50-9991-2a4a16f68097\",\r\n \"item2\": \"2017-12-06T18:30:27.2607978-08:00\"\r\n }\r\n ],\r\n \"recurrences\": [\r\n \"a6434d7f-401b-41b2-9a5b-776993416db7\"\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"pipelineId\": \"62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7\",\r\n \"pipelineName\": \"ps5747\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0039583806944444438,\r\n \"lastSubmitTime\": \"2018-06-07T20:50:33.201785+08:00\",\r\n \"runs\": [\r\n {\r\n \"item1\": \"c84329fd-ad4a-42b0-a79c-a84fd11ff900\",\r\n \"item2\": \"2018-06-07T20:50:33.201785+08:00\"\r\n }\r\n ],\r\n \"recurrences\": [\r\n \"ea2df5c8-2e38-46a3-af06-74c08f7335d3\"\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -11152,7 +22384,7 @@
"chunked"
],
"x-ms-request-id": [
- "413b33fa-fe8c-4d1c-860e-7073442e2fc6"
+ "d8753908-6e52-4a85-8018-4d5eb58fa669"
],
"X-Content-Type-Options": [
"nosniff"
@@ -11164,28 +22396,28 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:51 GMT"
+ "Thu, 07 Jun 2018 12:53:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeAnalytics/accounts/ps2331?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjMzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTM2OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37efb3e8-af84-4744-a618-442f7d5a66f3"
+ "9f4878fe-f6c9-478e-b715-fb0d86dbdfa7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -11199,29 +22431,38 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/4a8b297a-12e1-48d7-91d2-d2509037c8411?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "10c97922-10c6-4a3d-bcee-b0ef45b29401"
+ "0e516fb1-b345-4995-857f-1931bc7f04ba"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "a11a15e3-12ad-497a-a0b3-f272c122fd2f"
+ "8ba47dc4-975f-4504-92b8-e50bdd236ef0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023055Z:a11a15e3-12ad-497a-a0b3-f272c122fd2f"
+ "AUSTRALIAEAST:20180607T125331Z:8ba47dc4-975f-4504-92b8-e50bdd236ef0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:55 GMT"
+ "Thu, 07 Jun 2018 12:53:31 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369/operationresults/1?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -11233,31 +22474,28 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTIwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/4a8b297a-12e1-48d7-91d2-d2509037c8411?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80YThiMjk3YS0xMmUxLTQ4ZDctOTFkMi1kMjUwOTAzN2M4NDExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "7973dafc-0a24-451c-bb16-983e954e3f0b"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
@@ -11265,38 +22503,29 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a1?api-version=2016-11-01&expanded=true"
- ],
"x-ms-request-id": [
- "33889054-462c-4228-a0cd-dd6c90b61985"
+ "6e81df7d-fdc6-4966-80ca-404b43bb9420"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "de12b1a7-882c-4634-a5f8-7d897f07a7d0"
+ "f22f724c-7e14-4c72-8e16-a0255a032b98"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023059Z:de12b1a7-882c-4634-a5f8-7d897f07a7d0"
+ "AUSTRALIAEAST:20180607T125343Z:f22f724c-7e14-4c72-8e16-a0255a032b98"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:30:59 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5201/providers/Microsoft.DataLakeStore/accounts/ps9971/operationresults/1?api-version=2016-11-01"
+ "Thu, 07 Jun 2018 12:53:42 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -11308,28 +22537,25 @@
"ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a1?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9478/providers/Microsoft.DataLakeAnalytics/accounts/ps1369/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTM2OS9vcGVyYXRpb25yZXN1bHRzLzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -11338,31 +22564,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1e678e70-ae5a-4406-bb7a-e4eb347c1897"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "14f31aeb-eb6f-4174-a01e-7c0c01bbceb5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-correlation-request-id": [
- "aea2bf32-bddc-478e-b0d6-b29be1efffe3"
+ "a4f59e31-78c9-415f-88b7-94a028cfc31c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023100Z:aea2bf32-bddc-478e-b0d6-b29be1efffe3"
+ "AUSTRALIAEAST:20180607T125344Z:a4f59e31-78c9-415f-88b7-94a028cfc31c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:31:00 GMT"
+ "Thu, 07 Jun 2018 12:53:43 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -11374,28 +22597,31 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/24597c0d-085d-4435-a1da-1e3a814a9a0a1?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI0NTk3YzBkLTA4NWQtNDQzNS1hMWRhLTFlM2E4MTRhOWEwYTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9478/providers/Microsoft.DataLakeStore/accounts/ps8883?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM4ODgzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7ee5675-7d7e-4b96-a60c-337e91d6d4b0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -11404,31 +22630,28 @@
"no-cache"
],
"x-ms-request-id": [
- "782847cb-a604-4d8d-a80e-1a7b4e5c15d0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "23971bb0-f7ab-4a8c-aad5-f94ca66e7392"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "36b7e993-5b9f-411b-8907-01dc3d3f44d9"
+ "68a504be-f025-45cf-800c-e977dbbc8424"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023101Z:36b7e993-5b9f-411b-8907-01dc3d3f44d9"
+ "AUSTRALIAEAST:20180607T125352Z:68a504be-f025-45cf-800c-e977dbbc8424"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:31:00 GMT"
+ "Thu, 07 Jun 2018 12:53:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -11443,13 +22666,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5201?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTIwMT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9478?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTQ3OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6cddd431-5b57-409d-a76c-fdcccf1f2499"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -11466,44 +22698,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-request-id": [
- "fbc5d65e-147d-47ba-ac42-d495719c9cb2"
+ "08dfb561-7112-4c4b-bc3a-6765ddfcd02d"
],
"x-ms-correlation-request-id": [
- "fbc5d65e-147d-47ba-ac42-d495719c9cb2"
+ "08dfb561-7112-4c4b-bc3a-6765ddfcd02d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023103Z:fbc5d65e-147d-47ba-ac42-d495719c9cb2"
+ "AUSTRALIAEAST:20180607T125356Z:08dfb561-7112-4c4b-bc3a-6765ddfcd02d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:31:02 GMT"
+ "Thu, 07 Jun 2018 12:53:56 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUyMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NzgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUyMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeU1ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NzgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME56Z3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -11521,43 +22756,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14987"
],
"x-ms-request-id": [
- "3a47f0f1-2d8d-4722-ae47-d3379f0afec8"
+ "11ee9445-241f-4bd8-916b-01e821b97c66"
],
"x-ms-correlation-request-id": [
- "3a47f0f1-2d8d-4722-ae47-d3379f0afec8"
+ "11ee9445-241f-4bd8-916b-01e821b97c66"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023103Z:3a47f0f1-2d8d-4722-ae47-d3379f0afec8"
+ "AUSTRALIAEAST:20180607T125412Z:11ee9445-241f-4bd8-916b-01e821b97c66"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:31:02 GMT"
+ "Thu, 07 Jun 2018 12:54:11 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUyMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NzgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUyMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeU1ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NzgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME56Z3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -11575,43 +22813,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14986"
],
"x-ms-request-id": [
- "4a914c37-0e9b-4ad3-9faa-3f5c016de642"
+ "e862861f-7f60-494e-9c0d-2152a990da11"
],
"x-ms-correlation-request-id": [
- "4a914c37-0e9b-4ad3-9faa-3f5c016de642"
+ "e862861f-7f60-494e-9c0d-2152a990da11"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023118Z:4a914c37-0e9b-4ad3-9faa-3f5c016de642"
+ "AUSTRALIAEAST:20180607T125427Z:e862861f-7f60-494e-9c0d-2152a990da11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:31:18 GMT"
+ "Thu, 07 Jun 2018 12:54:27 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUyMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NzgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUyMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeU1ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NzgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME56Z3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -11625,47 +22866,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14985"
],
"x-ms-request-id": [
- "a22aa487-9cb6-4773-bcb9-57d41aedcdee"
+ "5e2ac1f9-13cc-481d-8438-efeb4ab6f488"
],
"x-ms-correlation-request-id": [
- "a22aa487-9cb6-4773-bcb9-57d41aedcdee"
+ "5e2ac1f9-13cc-481d-8438-efeb4ab6f488"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023134Z:a22aa487-9cb6-4773-bcb9-57d41aedcdee"
+ "AUSTRALIAEAST:20180607T125443Z:5e2ac1f9-13cc-481d-8438-efeb4ab6f488"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:31:33 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUyMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 12:54:42 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUyMDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeU1ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NzgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME56Z3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -11680,25 +22918,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14984"
],
"x-ms-request-id": [
- "840458dc-0b31-4bef-b47b-8318d2b79da8"
+ "9974f7e4-b3a4-481b-83a7-def513dfb31d"
],
"x-ms-correlation-request-id": [
- "840458dc-0b31-4bef-b47b-8318d2b79da8"
+ "9974f7e4-b3a4-481b-83a7-def513dfb31d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T023149Z:840458dc-0b31-4bef-b47b-8318d2b79da8"
+ "AUSTRALIAEAST:20180607T125444Z:9974f7e4-b3a4-481b-83a7-def513dfb31d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:31:48 GMT"
+ "Thu, 07 Jun 2018 12:54:43 GMT"
]
},
"StatusCode": 200
@@ -11706,25 +22947,25 @@
],
"Names": {
"": [
- "ps5201",
- "ps2331",
- "ps9971"
+ "ps9478",
+ "ps1369",
+ "ps8883"
],
"relationTest01": [
- "6bb85f5d-9337-4baf-9f19-e00d80758182"
+ "9aad4a8d-4af9-41eb-ac0d-35e61ca9ea81"
],
"relationTest02": [
- "a6434d7f-401b-41b2-9a5b-776993416db7"
+ "ea2df5c8-2e38-46a3-af06-74c08f7335d3"
],
"relationTest03": [
- "baee8691-ea2d-4282-9953-dfd14a0e7d34"
+ "62e79f4e-3dd3-4bd4-9717-bbfc0cda83d7"
],
"relationTest04": [
- "93e26511-dd17-4f50-9991-2a4a16f68097"
+ "c84329fd-ad4a-42b0-a79c-a84fd11ff900"
],
"Test-DataLakeAnalyticsJobRelationships": [
- "ps6678",
- "ps625"
+ "ps5747",
+ "ps6999"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestNegativeAdlaAccount.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestNegativeAdlaAccount.json
index a3ae3de5bb1c..cbc4d86ba77d 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestNegativeAdlaAccount.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestNegativeAdlaAccount.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "0349043a-32c5-4086-b398-e5422026aeb6"
+ "6751584e-57a5-4546-a2b3-a09f0a78231b"
],
"x-ms-correlation-request-id": [
- "0349043a-32c5-4086-b398-e5422026aeb6"
+ "6751584e-57a5-4546-a2b3-a09f0a78231b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031329Z:0349043a-32c5-4086-b398-e5422026aeb6"
+ "AUSTRALIAEAST:20180607T134116Z:6751584e-57a5-4546-a2b3-a09f0a78231b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:13:28 GMT"
+ "Thu, 07 Jun 2018 13:41:15 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14998"
],
"x-ms-request-id": [
- "12bedc3c-cee8-4463-bd4f-302c29388640"
+ "a67fc595-aa53-4368-905a-331f5b4107d7"
],
"x-ms-correlation-request-id": [
- "12bedc3c-cee8-4463-bd4f-302c29388640"
+ "a67fc595-aa53-4368-905a-331f5b4107d7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031330Z:12bedc3c-cee8-4463-bd4f-302c29388640"
+ "AUSTRALIAEAST:20180607T134116Z:a67fc595-aa53-4368-905a-331f5b4107d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:13:29 GMT"
+ "Thu, 07 Jun 2018 13:41:15 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3632?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzYzMj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps7762?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNzc2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "0072da47-327d-4e21-b006-9749dc6a3806"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632\",\r\n \"name\": \"ps3632\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762\",\r\n \"name\": \"ps7762\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,49 +142,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-request-id": [
- "21ebb02f-d56d-40ae-b254-6d0ab6d835e7"
+ "6051350d-a000-4fee-b260-378b07735518"
],
"x-ms-correlation-request-id": [
- "21ebb02f-d56d-40ae-b254-6d0ab6d835e7"
+ "6051350d-a000-4fee-b260-378b07735518"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031342Z:21ebb02f-d56d-40ae-b254-6d0ab6d835e7"
+ "AUSTRALIAEAST:20180607T134125Z:6051350d-a000-4fee-b260-378b07735518"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:13:42 GMT"
+ "Thu, 07 Jun 2018 13:41:25 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzMDAxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c7e1142-f463-437f-b7d4-c7c53d366469"
+ "b5d850f3-3f84-4945-9b9e-7e97fc13cef0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps3001' under resource group 'ps3632' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7493' under resource group 'ps7762' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -187,43 +205,46 @@
"gateway"
],
"x-ms-request-id": [
- "6d24b59f-59bc-4513-93b0-258a5bb063ce"
+ "b7aa70b8-16ad-45f2-b0ed-f84905ad98db"
],
"x-ms-correlation-request-id": [
- "6d24b59f-59bc-4513-93b0-258a5bb063ce"
+ "b7aa70b8-16ad-45f2-b0ed-f84905ad98db"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031342Z:6d24b59f-59bc-4513-93b0-258a5bb063ce"
+ "AUSTRALIAEAST:20180607T134127Z:b7aa70b8-16ad-45f2-b0ed-f84905ad98db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:13:42 GMT"
+ "Thu, 07 Jun 2018 13:41:27 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzMDAxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3001.azuredatalakestore.net\",\r\n \"accountId\": \"fbe0e3b4-3263-4d0a-ba50-ccbffe1ab024\",\r\n \"creationTime\": \"2017-12-07T03:13:48.9604944Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:13:48.9604944Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"8e4a6579-d2f3-46e0-a873-602588a9dc82\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001\",\r\n \"name\": \"ps3001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7493.azuredatalakestore.net\",\r\n \"accountId\": \"af18899e-f3a0-4e7b-a596-19faa3efdcb2\",\r\n \"creationTime\": \"2018-06-07T13:41:36.5972538Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:41:36.5972538Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"75b4dffb-22a5-4713-99a3-c63a90544916\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493\",\r\n \"name\": \"ps7493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -235,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d27acdf0-4bff-4e82-a5a1-bf502b5eb54d"
+ "e5d0279e-0ae8-4f05-a488-b0889897edb4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14985"
],
"x-ms-correlation-request-id": [
- "9393aaee-eda4-437a-b19e-76cb47fbb1dc"
+ "478340c2-a137-499e-bda0-04c1af3712ad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031419Z:9393aaee-eda4-437a-b19e-76cb47fbb1dc"
+ "AUSTRALIAEAST:20180607T134210Z:478340c2-a137-499e-bda0-04c1af3712ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:19 GMT"
+ "Thu, 07 Jun 2018 13:42:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -274,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzMDAxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b54acf20-672e-41b9-851f-f94dc877aaed"
+ "b5dab861-ddcc-48ce-ac47-e9bf644c30b2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3001.azuredatalakestore.net\",\r\n \"accountId\": \"fbe0e3b4-3263-4d0a-ba50-ccbffe1ab024\",\r\n \"creationTime\": \"2017-12-07T03:13:48.9604944Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:13:48.9604944Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"8e4a6579-d2f3-46e0-a873-602588a9dc82\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001\",\r\n \"name\": \"ps3001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7493.azuredatalakestore.net\",\r\n \"accountId\": \"af18899e-f3a0-4e7b-a596-19faa3efdcb2\",\r\n \"creationTime\": \"2018-06-07T13:41:36.5972538Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:41:36.5972538Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"75b4dffb-22a5-4713-99a3-c63a90544916\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493\",\r\n \"name\": \"ps7493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -307,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1330d9bb-5958-4845-bf58-0a56f06690e9"
+ "48e27f9e-d725-4413-a79a-b94b9000efc3"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14984"
],
"x-ms-correlation-request-id": [
- "a458fe23-94c0-49a4-951b-cbab11cd6ff2"
+ "42b059d6-c5bb-4b2c-b7d0-6ca8c1f6f674"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031502Z:a458fe23-94c0-49a4-951b-cbab11cd6ff2"
+ "AUSTRALIAEAST:20180607T134332Z:42b059d6-c5bb-4b2c-b7d0-6ca8c1f6f674"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:01 GMT"
+ "Thu, 07 Jun 2018 13:43:32 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -346,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzMDAxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "9308427e-db02-45b7-9466-c5cbbd143c8a"
+ "e8b11835-5690-4ce9-b6c2-b8f1abd8b1f6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fbe0e3b4-3263-4d0a-ba50-ccbffe1ab024\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001\",\r\n \"name\": \"ps3001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"af18899e-f3a0-4e7b-a596-19faa3efdcb2\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493\",\r\n \"name\": \"ps7493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -388,37 +403,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fbe0e3b4-3263-4d0a-ba50-ccbffe1ab0240?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/af18899e-f3a0-4e7b-a596-19faa3efdcb20?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "53130105-d1e0-4912-8900-936b4931d015"
+ "a113686b-2b5f-4491-9faa-085664ba819b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "3f142aa3-802a-4c65-99c2-796ed819d0b5"
+ "b645add9-0623-487c-96cd-3bb327bd5504"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031347Z:3f142aa3-802a-4c65-99c2-796ed819d0b5"
+ "AUSTRALIAEAST:20180607T134135Z:b645add9-0623-487c-96cd-3bb327bd5504"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:13:46 GMT"
+ "Thu, 07 Jun 2018 13:41:34 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -433,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fbe0e3b4-3263-4d0a-ba50-ccbffe1ab0240?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZiZTBlM2I0LTMyNjMtNGQwYS1iYTUwLWNjYmZmZTFhYjAyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/af18899e-f3a0-4e7b-a596-19faa3efdcb20?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FmMTg4OTllLWYzYTAtNGU3Yi1hNTk2LTE5ZmFhM2VmZGNiMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -460,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7591c343-76ff-4fb0-91c9-f269ff3758a9"
+ "311eb989-2e7a-4683-8cf9-99997f56b8d0"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14988"
],
"x-ms-correlation-request-id": [
- "606d32d3-3945-4345-ab1d-3978d9327e0c"
+ "44bf32bd-6936-44cd-a2ec-b9ac3c36770a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031357Z:606d32d3-3945-4345-ab1d-3978d9327e0c"
+ "AUSTRALIAEAST:20180607T134146Z:44bf32bd-6936-44cd-a2ec-b9ac3c36770a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:13:56 GMT"
+ "Thu, 07 Jun 2018 13:41:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -499,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fbe0e3b4-3263-4d0a-ba50-ccbffe1ab0240?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZiZTBlM2I0LTMyNjMtNGQwYS1iYTUwLWNjYmZmZTFhYjAyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/af18899e-f3a0-4e7b-a596-19faa3efdcb20?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FmMTg4OTllLWYzYTAtNGU3Yi1hNTk2LTE5ZmFhM2VmZGNiMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -526,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b9c79e9a-e3cc-40f8-9590-01e4a74c1802"
+ "69f0d470-95ad-40dc-82d3-819902a82af7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14987"
],
"x-ms-correlation-request-id": [
- "cecd4c25-364c-4a14-bf92-1aaf5f78061f"
+ "afa06a71-aaf5-47db-b4bb-405cc4879100"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031408Z:cecd4c25-364c-4a14-bf92-1aaf5f78061f"
+ "AUSTRALIAEAST:20180607T134157Z:afa06a71-aaf5-47db-b4bb-405cc4879100"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:08 GMT"
+ "Thu, 07 Jun 2018 13:41:57 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -565,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fbe0e3b4-3263-4d0a-ba50-ccbffe1ab0240?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZiZTBlM2I0LTMyNjMtNGQwYS1iYTUwLWNjYmZmZTFhYjAyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/af18899e-f3a0-4e7b-a596-19faa3efdcb20?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FmMTg4OTllLWYzYTAtNGU3Yi1hNTk2LTE5ZmFhM2VmZGNiMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -592,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c8e036e1-b662-49d5-a954-368249175ac4"
+ "357933da-a57b-4f87-bfe3-e7d116f97426"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14986"
],
"x-ms-correlation-request-id": [
- "c2c36520-35d5-45ff-8b6b-6b2d57ce0464"
+ "8217bbac-5891-4e31-973b-5e1b18cb8a87"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031418Z:c2c36520-35d5-45ff-8b6b-6b2d57ce0464"
+ "AUSTRALIAEAST:20180607T134209Z:8217bbac-5891-4e31-973b-5e1b18cb8a87"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:18 GMT"
+ "Thu, 07 Jun 2018 13:42:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -631,25 +634,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9cd9dc5c-a612-4f0a-83fc-76b3871bdc1f"
+ "0810a582-e485-47a9-9254-ce66499685ab"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5000' under resource group 'ps3632' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps8601' under resource group 'ps7762' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -667,46 +670,49 @@
"gateway"
],
"x-ms-request-id": [
- "3b475fba-9fba-4e10-9b2d-b6c092518b1c"
+ "be343520-6d70-4fd0-9f77-888690f6914d"
],
"x-ms-correlation-request-id": [
- "3b475fba-9fba-4e10-9b2d-b6c092518b1c"
+ "be343520-6d70-4fd0-9f77-888690f6914d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031420Z:3b475fba-9fba-4e10-9b2d-b6c092518b1c"
+ "AUSTRALIAEAST:20180607T134212Z:be343520-6d70-4fd0-9f77-888690f6914d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:19 GMT"
+ "Thu, 07 Jun 2018 13:42:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "104765c0-c1ff-497b-9b4a-5e72cda34d8b"
+ "4dcde96e-0ffd-46e8-b5a2-2d7ac624b9a8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5000' under resource group 'ps3632' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps8601' under resource group 'ps7762' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -724,43 +730,46 @@
"gateway"
],
"x-ms-request-id": [
- "7bfea8ea-c209-41aa-b423-fa4243db5818"
+ "d0d08626-087d-4457-b851-beadd1f746ec"
],
"x-ms-correlation-request-id": [
- "7bfea8ea-c209-41aa-b423-fa4243db5818"
+ "d0d08626-087d-4457-b851-beadd1f746ec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031420Z:7bfea8ea-c209-41aa-b423-fa4243db5818"
+ "AUSTRALIAEAST:20180607T134212Z:d0d08626-087d-4457-b851-beadd1f746ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:19 GMT"
+ "Thu, 07 Jun 2018 13:42:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps3001\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3001\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5000.azuredatalakeanalytics.net\",\r\n \"accountId\": \"67ebebda-7af4-41a5-82da-62e1166e89e0\",\r\n \"creationTime\": \"2017-12-07T03:14:24.5184405Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:14:24.5184405Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000\",\r\n \"name\": \"ps5000\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7493\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7493\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8601.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5782f08b-7e2a-47b4-91ad-f0673584deb8\",\r\n \"creationTime\": \"2018-06-07T13:42:31.0113092Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:42:31.0113092Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601\",\r\n \"name\": \"ps8601\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -772,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5f1c47d7-ad25-4807-bd03-c03a1ada78ed"
+ "bfb64c1a-b1eb-4a72-83da-a50feb04cb07"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14986"
],
"x-ms-correlation-request-id": [
- "fc6a2f51-e9df-4547-a734-10d692cfe27a"
+ "befb291d-1ca8-4574-a652-fc4936190a2b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031455Z:fc6a2f51-e9df-4547-a734-10d692cfe27a"
+ "AUSTRALIAEAST:20180607T134304Z:befb291d-1ca8-4574-a652-fc4936190a2b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:54 GMT"
+ "Thu, 07 Jun 2018 13:43:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -811,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "340b72dd-b423-4cc5-857c-1c8cd0d2f158"
+ "115885b7-c10b-44a3-b70a-78e3aa98a20b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps3001\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3001\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5000.azuredatalakeanalytics.net\",\r\n \"accountId\": \"67ebebda-7af4-41a5-82da-62e1166e89e0\",\r\n \"creationTime\": \"2017-12-07T03:14:24.5184405Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:14:24.5184405Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000\",\r\n \"name\": \"ps5000\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7493\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7493\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8601.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5782f08b-7e2a-47b4-91ad-f0673584deb8\",\r\n \"creationTime\": \"2018-06-07T13:42:31.0113092Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:42:31.0113092Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601\",\r\n \"name\": \"ps8601\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -844,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d76b7d2c-385e-4b5d-8c91-ff8fca88a86a"
+ "14286248-d576-4b23-b727-eb625b5bbc7c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14985"
],
"x-ms-correlation-request-id": [
- "5d1d930b-6296-4050-99ad-90807c3c7097"
+ "d9905dc9-976d-4f34-a3ee-8284e00d0876"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031456Z:5d1d930b-6296-4050-99ad-90807c3c7097"
+ "AUSTRALIAEAST:20180607T134306Z:d9905dc9-976d-4f34-a3ee-8284e00d0876"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:56 GMT"
+ "Thu, 07 Jun 2018 13:43:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -883,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90196a41-e753-4e92-9635-418181d80c2c"
+ "aa822da9-0b99-4014-9c36-c4b851555fef"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps3001\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3001\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5000.azuredatalakeanalytics.net\",\r\n \"accountId\": \"67ebebda-7af4-41a5-82da-62e1166e89e0\",\r\n \"creationTime\": \"2017-12-07T03:14:24.5184405Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:14:24.5184405Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000\",\r\n \"name\": \"ps5000\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7493\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7493\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8601.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5782f08b-7e2a-47b4-91ad-f0673584deb8\",\r\n \"creationTime\": \"2018-06-07T13:42:31.0113092Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:42:31.0113092Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601\",\r\n \"name\": \"ps8601\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -916,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "29fe1642-93dc-40e8-8bd0-cd9fdce7b578"
+ "230b2b79-4b62-4d86-89b4-7d9c61f2a392"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14984"
],
"x-ms-correlation-request-id": [
- "10cc4c8e-89e8-4c3f-9436-5939f8059f1d"
+ "71cfd0cb-8258-437d-a08d-884b125d7191"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031457Z:10cc4c8e-89e8-4c3f-9436-5939f8059f1d"
+ "AUSTRALIAEAST:20180607T134307Z:71cfd0cb-8258-437d-a08d-884b125d7191"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:56 GMT"
+ "Thu, 07 Jun 2018 13:43:07 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -955,28 +955,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbb3ba4c-debe-45bb-832c-333985b4d3b8"
+ "b0269f9c-47ab-4c4c-bfb8-4d25b3365094"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps3001\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3001\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5000.azuredatalakeanalytics.net\",\r\n \"accountId\": \"67ebebda-7af4-41a5-82da-62e1166e89e0\",\r\n \"creationTime\": \"2017-12-07T03:14:24.5184405Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:14:24.5184405Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000\",\r\n \"name\": \"ps5000\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7493\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7493\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8601.azuredatalakeanalytics.net\",\r\n \"accountId\": \"5782f08b-7e2a-47b4-91ad-f0673584deb8\",\r\n \"creationTime\": \"2018-06-07T13:42:31.0113092Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:42:31.0113092Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601\",\r\n \"name\": \"ps8601\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -988,31 +988,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0ec14f06-b18a-4175-9119-e0e6d1fd0dea"
+ "6f5bb7eb-3906-45a3-8b21-51c2a475f0eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14981"
],
"x-ms-correlation-request-id": [
- "03c4aca8-e66e-4d8f-98f1-2c1ac52a4ad1"
+ "979b28ce-3832-49fc-9669-1948122164c0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031458Z:03c4aca8-e66e-4d8f-98f1-2c1ac52a4ad1"
+ "AUSTRALIAEAST:20180607T134309Z:979b28ce-3832-49fc-9669-1948122164c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:58 GMT"
+ "Thu, 07 Jun 2018 13:43:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1027,31 +1024,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f70e6eb-b7ff-4ba9-9e78-e2b03e45f103"
+ "45f56e18-e21e-4757-a650-e88baffaa608"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5000' under resource group 'ps3632' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "74"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1059,17 +1056,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "cf0cab42-514f-4e0e-a6d4-cdee78739916"
+ "2c5345fc-8ac1-451d-8288-59d939dbc1b9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
],
"x-ms-correlation-request-id": [
- "cf0cab42-514f-4e0e-a6d4-cdee78739916"
+ "e1d3941d-f179-4217-b589-cb2c00b343ea"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031501Z:cf0cab42-514f-4e0e-a6d4-cdee78739916"
+ "AUSTRALIAEAST:20180607T134327Z:e1d3941d-f179-4217-b589-cb2c00b343ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1078,37 +1078,46 @@
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:01 GMT"
+ "Thu, 07 Jun 2018 13:43:26 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f57edd1-8fe7-4feb-a13e-6ec61bb95b00"
+ "584e9629-4cef-4840-9010-e3752410e6e9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5000' under resource group 'ps3632' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "74"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1116,17 +1125,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "194d103d-2da7-4223-a62f-0c25a8b8bb69"
+ "14433c9f-6e1a-45c7-87ee-2b8497e4fab9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
],
"x-ms-correlation-request-id": [
- "194d103d-2da7-4223-a62f-0c25a8b8bb69"
+ "72e5d9be-897d-4f86-9d4f-851d3230bf89"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031501Z:194d103d-2da7-4223-a62f-0c25a8b8bb69"
+ "AUSTRALIAEAST:20180607T134329Z:72e5d9be-897d-4f86-9d4f-851d3230bf89"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1135,37 +1147,46 @@
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:01 GMT"
+ "Thu, 07 Jun 2018 13:43:28 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bccec161-6753-4139-a8bf-ce3d613ee64b"
+ "6d846d8c-276e-4c87-a437-37f09e4c4580"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5000' under resource group 'ps3632' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "153"
+ "74"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1173,17 +1194,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "06866aac-0215-4763-a38e-57a004ad2e93"
+ "f7452f39-1502-4120-8114-238ef252e15d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
],
"x-ms-correlation-request-id": [
- "06866aac-0215-4763-a38e-57a004ad2e93"
+ "11308bb2-2b20-46dc-936c-7e50a6724251"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031501Z:06866aac-0215-4763-a38e-57a004ad2e93"
+ "AUSTRALIAEAST:20180607T134330Z:11308bb2-2b20-46dc-936c-7e50a6724251"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1192,40 +1216,49 @@
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:01 GMT"
+ "Thu, 07 Jun 2018 13:43:29 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps3001\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps3001\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7493\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7493\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "3ca3c7e9-2cd0-4e80-a729-e0812d9636dd"
+ "58f79614-1370-4093-8b7b-81b9602574af"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps3001\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3001\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"67ebebda-7af4-41a5-82da-62e1166e89e0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000\",\r\n \"name\": \"ps5000\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7493\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7493\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5782f08b-7e2a-47b4-91ad-f0673584deb8\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601\",\r\n \"name\": \"ps8601\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "487"
],
"Content-Type": [
"application/json"
@@ -1240,10 +1273,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/67ebebda-7af4-41a5-82da-62e1166e89e00?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5782f08b-7e2a-47b4-91ad-f0673584deb80?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "2d4aad66-3159-4648-ad49-b582581018e8"
+ "7a662599-3484-472f-a7db-c253531ab03c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1252,25 +1285,22 @@
"1198"
],
"x-ms-correlation-request-id": [
- "42aee4a0-8583-4d89-9f3b-bc8a03a508f7"
+ "74d4ba72-840d-43db-8754-e6b4995f2700"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031422Z:42aee4a0-8583-4d89-9f3b-bc8a03a508f7"
+ "AUSTRALIAEAST:20180607T134229Z:74d4ba72-840d-43db-8754-e6b4995f2700"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:21 GMT"
+ "Thu, 07 Jun 2018 13:42:28 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1285,16 +1315,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/67ebebda-7af4-41a5-82da-62e1166e89e00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82N2ViZWJkYS03YWY0LTQxYTUtODJkYS02MmUxMTY2ZTg5ZTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5782f08b-7e2a-47b4-91ad-f0673584deb80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81NzgyZjA4Yi03ZTJhLTQ3YjQtOTFhZC1mMDY3MzU4NGRlYjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1312,31 +1342,28 @@
"no-cache"
],
"x-ms-request-id": [
- "bbb4c085-9bc0-41bf-9cf0-412a39488cd8"
+ "c1f6fc1a-affc-45ee-ae08-c7095ac84496"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14989"
],
"x-ms-correlation-request-id": [
- "23966128-41d4-40e2-ae11-79fecf5693b9"
+ "2258ab2d-edef-4ab4-a519-9687c9648c55"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031433Z:23966128-41d4-40e2-ae11-79fecf5693b9"
+ "AUSTRALIAEAST:20180607T134240Z:2258ab2d-edef-4ab4-a519-9687c9648c55"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:32 GMT"
+ "Thu, 07 Jun 2018 13:42:40 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1351,16 +1378,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/67ebebda-7af4-41a5-82da-62e1166e89e00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82N2ViZWJkYS03YWY0LTQxYTUtODJkYS02MmUxMTY2ZTg5ZTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5782f08b-7e2a-47b4-91ad-f0673584deb80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81NzgyZjA4Yi03ZTJhLTQ3YjQtOTFhZC1mMDY3MzU4NGRlYjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1378,31 +1405,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d98834d7-c3e3-4ac3-b31f-69bb65d4f51d"
+ "4fd55157-b65f-4e36-ac31-a66e951f3a70"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14988"
],
"x-ms-correlation-request-id": [
- "b3b2a837-c66e-4b12-a6b9-f19ae0ba0681"
+ "c7bd34e4-5e67-4820-87da-adf642e765c5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031443Z:b3b2a837-c66e-4b12-a6b9-f19ae0ba0681"
+ "AUSTRALIAEAST:20180607T134251Z:c7bd34e4-5e67-4820-87da-adf642e765c5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:42 GMT"
+ "Thu, 07 Jun 2018 13:42:51 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1417,16 +1441,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/67ebebda-7af4-41a5-82da-62e1166e89e00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82N2ViZWJkYS03YWY0LTQxYTUtODJkYS02MmUxMTY2ZTg5ZTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5782f08b-7e2a-47b4-91ad-f0673584deb80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81NzgyZjA4Yi03ZTJhLTQ3YjQtOTFhZC1mMDY3MzU4NGRlYjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1444,31 +1468,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4ba54f22-a97e-448d-b525-3de2a360dae0"
+ "4b0b868c-2a49-43d8-8f2e-9fc17de3a688"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14987"
],
"x-ms-correlation-request-id": [
- "74551370-1ffd-4b6e-bbf1-49c28cd0fac1"
+ "c98224ba-73d5-44ce-81b3-ad3fb1da700c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031454Z:74551370-1ffd-4b6e-bbf1-49c28cd0fac1"
+ "AUSTRALIAEAST:20180607T134303Z:c98224ba-73d5-44ce-81b3-ad3fb1da700c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:54 GMT"
+ "Thu, 07 Jun 2018 13:43:02 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1483,25 +1504,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlQW5hbHl0aWNzYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlQW5hbHl0aWNzYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9382d5a-ba69-4ee2-a7e2-bfeeb2c9d443"
+ "252ca762-7e47-4160-b26b-0a888eb5ec57"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'ps3632' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'ps7762' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"181"
@@ -1519,46 +1540,49 @@
"gateway"
],
"x-ms-request-id": [
- "96237307-067f-445d-9c38-a48581761f7a"
+ "90785552-f09b-46e2-aa30-311f1c49ddde"
],
"x-ms-correlation-request-id": [
- "96237307-067f-445d-9c38-a48581761f7a"
+ "90785552-f09b-46e2-aa30-311f1c49ddde"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031457Z:96237307-067f-445d-9c38-a48581761f7a"
+ "AUSTRALIAEAST:20180607T134308Z:90785552-f09b-46e2-aa30-311f1c49ddde"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:57 GMT"
+ "Thu, 07 Jun 2018 13:43:07 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlQW5hbHl0aWNzYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlQW5hbHl0aWNzYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "24dd4adf-3170-4b6a-b21f-4dff43c2b509"
+ "7c4410e0-6b68-4217-8ccc-ce469cbd8335"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'ps3632' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'ps7762' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"181"
@@ -1576,43 +1600,46 @@
"gateway"
],
"x-ms-request-id": [
- "9132ce31-c4fe-4b95-b03f-969c24a55c16"
+ "f679b936-58d6-4fc8-abc0-b2f336fc1c4a"
],
"x-ms-correlation-request-id": [
- "9132ce31-c4fe-4b95-b03f-969c24a55c16"
+ "f679b936-58d6-4fc8-abc0-b2f336fc1c4a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031457Z:9132ce31-c4fe-4b95-b03f-969c24a55c16"
+ "AUSTRALIAEAST:20180607T134308Z:f679b936-58d6-4fc8-abc0-b2f336fc1c4a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:14:57 GMT"
+ "Thu, 07 Jun 2018 13:43:08 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeAnalytics/accounts/ps5000?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTAwMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f43fb40c-eb85-4f82-84cf-44059d1fc613"
+ "a5d849d8-2ea0-4f71-b6a9-0da3ad4f3830"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -1626,29 +1653,101 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5782f08b-7e2a-47b4-91ad-f0673584deb81?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "4e36b1c4-18df-40e5-921a-2be3a5256a82"
+ "3fe0a455-39cf-420a-ac96-b69ccd46db0d"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "890c9e24-f341-4d2e-8a45-78b418488a90"
+ "fb752584-2120-45d6-81c8-667065cd8d83"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031501Z:890c9e24-f341-4d2e-8a45-78b418488a90"
+ "AUSTRALIAEAST:20180607T134313Z:fb752584-2120-45d6-81c8-667065cd8d83"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 13:43:13 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601/operationresults/1?api-version=2016-11-01"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/5782f08b-7e2a-47b4-91ad-f0673584deb81?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81NzgyZjA4Yi03ZTJhLTQ3YjQtOTFhZC1mMDY3MzU4NGRlYjgxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "680a5a57-e270-45ec-9ca4-bd9504019e2d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1965ec3-c552-480e-94d3-126e5a897815"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T134324Z:e1965ec3-c552-480e-94d3-126e5a897815"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:01 GMT"
+ "Thu, 07 Jun 2018 13:43:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1663,19 +1762,79 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3632/providers/Microsoft.DataLakeStore/accounts/ps3001?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzMDAxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps7762/providers/Microsoft.DataLakeAnalytics/accounts/ps8601/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODYwMS9vcGVyYXRpb25yZXN1bHRzLzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4fd95c69-b1c1-4f81-9c9a-48e1c77b3c8a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14979"
+ ],
+ "x-ms-correlation-request-id": [
+ "107c00ad-9b96-433d-a66a-b952e0df9640"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T134326Z:107c00ad-9b96-433d-a66a-b952e0df9640"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 13:43:25 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps7762/providers/Microsoft.DataLakeStore/accounts/ps7493?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNzc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d9f1f3d-3fe0-4ba7-86b3-d7bd6bcea330"
+ "6f67cddb-70b3-4c84-a4cc-2c0b3ef7b970"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1693,28 +1852,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7ecfb74e-d715-4eda-a2a3-8c386340cb5d"
+ "a4c460b3-4436-43ff-aa87-288146142128"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "e1c39309-86a8-4685-b88d-890edebb70c2"
+ "d1bc72a0-cfde-4b43-8e61-8de3836eb579"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031505Z:e1c39309-86a8-4685-b88d-890edebb70c2"
+ "AUSTRALIAEAST:20180607T134338Z:d1bc72a0-cfde-4b43-8e61-8de3836eb579"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:05 GMT"
+ "Thu, 07 Jun 2018 13:43:37 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1729,13 +1888,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3632?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzYzMj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps7762?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNzc2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bed00f8f-cdd6-4b51-91fc-21f05782cfc1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1752,44 +1920,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14994"
],
"x-ms-request-id": [
- "6a0a9b00-0b92-4388-a766-5b11b736f693"
+ "ea50bf81-b7ab-4f27-8e86-edbbee6ec0c6"
],
"x-ms-correlation-request-id": [
- "6a0a9b00-0b92-4388-a766-5b11b736f693"
+ "ea50bf81-b7ab-4f27-8e86-edbbee6ec0c6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031508Z:6a0a9b00-0b92-4388-a766-5b11b736f693"
+ "AUSTRALIAEAST:20180607T134342Z:ea50bf81-b7ab-4f27-8e86-edbbee6ec0c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:07 GMT"
+ "Thu, 07 Jun 2018 13:43:41 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk16SXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qSXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1807,43 +1978,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14994"
],
"x-ms-request-id": [
- "c4b44adc-48fd-4077-9959-7773858901c5"
+ "146504de-738b-4104-8da0-77f0325f671f"
],
"x-ms-correlation-request-id": [
- "c4b44adc-48fd-4077-9959-7773858901c5"
+ "146504de-738b-4104-8da0-77f0325f671f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031508Z:c4b44adc-48fd-4077-9959-7773858901c5"
+ "AUSTRALIAEAST:20180607T134358Z:146504de-738b-4104-8da0-77f0325f671f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:08 GMT"
+ "Thu, 07 Jun 2018 13:43:58 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk16SXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qSXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1861,43 +2035,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14993"
],
"x-ms-request-id": [
- "4d978dab-682d-4c50-ab46-da55ce7a58f5"
+ "212e8821-cd1c-49f2-b44b-947bf316bcf2"
],
"x-ms-correlation-request-id": [
- "4d978dab-682d-4c50-ab46-da55ce7a58f5"
+ "212e8821-cd1c-49f2-b44b-947bf316bcf2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031523Z:4d978dab-682d-4c50-ab46-da55ce7a58f5"
+ "AUSTRALIAEAST:20180607T134413Z:212e8821-cd1c-49f2-b44b-947bf316bcf2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:23 GMT"
+ "Thu, 07 Jun 2018 13:44:12 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk16SXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qSXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1911,47 +2088,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14992"
],
"x-ms-request-id": [
- "2392d9c4-7c9b-4842-b100-6664b4e2b689"
+ "271a4fa7-025d-413d-b517-e4db52db7d59"
],
"x-ms-correlation-request-id": [
- "2392d9c4-7c9b-4842-b100-6664b4e2b689"
+ "271a4fa7-025d-413d-b517-e4db52db7d59"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031539Z:2392d9c4-7c9b-4842-b100-6664b4e2b689"
+ "AUSTRALIAEAST:20180607T134429Z:271a4fa7-025d-413d-b517-e4db52db7d59"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:39 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 13:44:29 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MzItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk16SXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qSXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1966,25 +2140,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14991"
],
"x-ms-request-id": [
- "4c4c96c3-21cd-415b-ad4b-e56aedf1c359"
+ "6313ffe4-90ac-4f04-a4e6-81db5da55b19"
],
"x-ms-correlation-request-id": [
- "4c4c96c3-21cd-415b-ad4b-e56aedf1c359"
+ "6313ffe4-90ac-4f04-a4e6-81db5da55b19"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031554Z:4c4c96c3-21cd-415b-ad4b-e56aedf1c359"
+ "AUSTRALIAEAST:20180607T134429Z:6313ffe4-90ac-4f04-a4e6-81db5da55b19"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:15:54 GMT"
+ "Thu, 07 Jun 2018 13:44:29 GMT"
]
},
"StatusCode": 200
@@ -1992,9 +2169,9 @@
],
"Names": {
"": [
- "ps3632",
- "ps5000",
- "ps3001"
+ "ps7762",
+ "ps8601",
+ "ps7493"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestNegativeAdlaJob.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestNegativeAdlaJob.json
index bc4504e22f5f..ff149d7a5465 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestNegativeAdlaJob.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaAliasTests/TestNegativeAdlaJob.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1199"
],
"x-ms-request-id": [
- "36d31fca-92af-4660-b9ca-d2633ea436ce"
+ "f42086bb-b981-4971-8a85-c50d36796202"
],
"x-ms-correlation-request-id": [
- "36d31fca-92af-4660-b9ca-d2633ea436ce"
+ "f42086bb-b981-4971-8a85-c50d36796202"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024010Z:36d31fca-92af-4660-b9ca-d2633ea436ce"
+ "AUSTRALIAEAST:20180607T130352Z:f42086bb-b981-4971-8a85-c50d36796202"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:10 GMT"
+ "Thu, 07 Jun 2018 13:03:52 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14975"
+ "14999"
],
"x-ms-request-id": [
- "bf925862-56d5-4c9c-a14b-fbd9f7e22dbf"
+ "9a927af2-7ddc-46fc-9bde-54f115113238"
],
"x-ms-correlation-request-id": [
- "bf925862-56d5-4c9c-a14b-fbd9f7e22dbf"
+ "9a927af2-7ddc-46fc-9bde-54f115113238"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024010Z:bf925862-56d5-4c9c-a14b-fbd9f7e22dbf"
+ "AUSTRALIAEAST:20180607T130352Z:9a927af2-7ddc-46fc-9bde-54f115113238"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:10 GMT"
+ "Thu, 07 Jun 2018 13:03:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1339?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMTMzOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9366?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTM2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "04e6fdad-c166-44a4-b1d0-3da50196adf6"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339\",\r\n \"name\": \"ps1339\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366\",\r\n \"name\": \"ps9366\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,52 +142,55 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1198"
],
"x-ms-request-id": [
- "54b8921a-61da-49e7-b30e-2dbd20d927cb"
+ "80c027c1-80d6-4c29-9491-0a64a332ec74"
],
"x-ms-correlation-request-id": [
- "54b8921a-61da-49e7-b30e-2dbd20d927cb"
+ "80c027c1-80d6-4c29-9491-0a64a332ec74"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024019Z:54b8921a-61da-49e7-b30e-2dbd20d927cb"
+ "AUSTRALIAEAST:20180607T130403Z:80c027c1-80d6-4c29-9491-0a64a332ec74"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:19 GMT"
+ "Thu, 07 Jun 2018 13:04:02 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NDEyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a9cdc0b-17ce-4295-9b5d-78ba4d53d17d"
+ "364b0ae2-4a44-4a5a-bdb0-48f131110ecf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps9412' under resource group 'ps1339' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps263' under resource group 'ps9366' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "149"
+ "148"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -187,43 +205,46 @@
"gateway"
],
"x-ms-request-id": [
- "6f00694b-2753-44c1-85ad-51bdee281d5b"
+ "b70ef20a-218f-4589-b9f9-393ef0b21998"
],
"x-ms-correlation-request-id": [
- "6f00694b-2753-44c1-85ad-51bdee281d5b"
+ "b70ef20a-218f-4589-b9f9-393ef0b21998"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024019Z:6f00694b-2753-44c1-85ad-51bdee281d5b"
+ "AUSTRALIAEAST:20180607T130405Z:b70ef20a-218f-4589-b9f9-393ef0b21998"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:19 GMT"
+ "Thu, 07 Jun 2018 13:04:04 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NDEyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9412.azuredatalakestore.net\",\r\n \"accountId\": \"6a8309b5-a204-4641-aac3-1f053169a29b\",\r\n \"creationTime\": \"2017-12-07T02:40:26.2962388Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:40:26.2962388Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"13026aaa-fa1d-4e2d-8f20-012aed4d87bd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412\",\r\n \"name\": \"ps9412\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps263.azuredatalakestore.net\",\r\n \"accountId\": \"8232eb2b-8a46-45ba-8d8a-c7a466e89b8f\",\r\n \"creationTime\": \"2018-06-07T13:04:16.1298891Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:04:16.1298891Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"25f17796-90e2-40ba-9fbc-f3b803ba3b81\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263\",\r\n \"name\": \"ps263\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "989"
],
"Content-Type": [
"application/json"
@@ -235,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "305233a3-77f5-4e93-8d4e-1d6d1aaf580e"
+ "20cd499d-6025-43c9-a52c-b8eee47c57d2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14995"
],
"x-ms-correlation-request-id": [
- "e274e6ff-bbd6-4789-ba5f-091f845f52d1"
+ "caa9f0dd-705d-42a4-af6f-8f40f251b841"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024057Z:e274e6ff-bbd6-4789-ba5f-091f845f52d1"
+ "AUSTRALIAEAST:20180607T130448Z:caa9f0dd-705d-42a4-af6f-8f40f251b841"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:56 GMT"
+ "Thu, 07 Jun 2018 13:04:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -274,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NDEyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ac6d388-0843-4f31-bb45-3a30b6499feb"
+ "ce7a76d3-eba6-4616-b5af-8ea97b4f9b9d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9412.azuredatalakestore.net\",\r\n \"accountId\": \"6a8309b5-a204-4641-aac3-1f053169a29b\",\r\n \"creationTime\": \"2017-12-07T02:40:26.2962388Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:40:26.2962388Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"13026aaa-fa1d-4e2d-8f20-012aed4d87bd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412\",\r\n \"name\": \"ps9412\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps263.azuredatalakestore.net\",\r\n \"accountId\": \"8232eb2b-8a46-45ba-8d8a-c7a466e89b8f\",\r\n \"creationTime\": \"2018-06-07T13:04:16.1298891Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:04:16.1298891Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"25f17796-90e2-40ba-9fbc-f3b803ba3b81\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263\",\r\n \"name\": \"ps263\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "989"
],
"Content-Type": [
"application/json"
@@ -307,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "94355c08-e9da-4d7d-92d6-bcd1640d9a0d"
+ "8418d995-b648-4245-935a-f8c5a90256ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14994"
],
"x-ms-correlation-request-id": [
- "a1baaa04-f0e9-4d78-8ade-fd7ff630e49f"
+ "0b3ed522-b685-464d-ae8d-66e26eb78b0c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024140Z:a1baaa04-f0e9-4d78-8ade-fd7ff630e49f"
+ "AUSTRALIAEAST:20180607T130546Z:0b3ed522-b685-464d-ae8d-66e26eb78b0c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:39 GMT"
+ "Thu, 07 Jun 2018 13:05:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -346,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NDEyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "27e54165-7e4b-426a-a6ed-7e0a861fe8bd"
+ "760fd6db-291e-400b-ace1-2edcceb8f4af"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"6a8309b5-a204-4641-aac3-1f053169a29b\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412\",\r\n \"name\": \"ps9412\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8232eb2b-8a46-45ba-8d8a-c7a466e89b8f\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263\",\r\n \"name\": \"ps263\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "558"
],
"Content-Type": [
"application/json"
@@ -388,10 +403,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6a8309b5-a204-4641-aac3-1f053169a29b0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/8232eb2b-8a46-45ba-8d8a-c7a466e89b8f0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "681dfdee-4d64-4642-8aae-7681d1ca2be9"
+ "177aa0dc-157b-4c77-b5d5-131a9bc3c105"
],
"X-Content-Type-Options": [
"nosniff"
@@ -400,25 +415,22 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a521e008-3cdd-42be-9a0f-63f1645c7d92"
+ "5b0f6bb9-b921-4987-9560-c6dfe8c3623a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024024Z:a521e008-3cdd-42be-9a0f-63f1645c7d92"
+ "AUSTRALIAEAST:20180607T130413Z:5b0f6bb9-b921-4987-9560-c6dfe8c3623a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:23 GMT"
+ "Thu, 07 Jun 2018 13:04:13 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -433,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6a8309b5-a204-4641-aac3-1f053169a29b0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZhODMwOWI1LWEyMDQtNDY0MS1hYWMzLTFmMDUzMTY5YTI5YjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/8232eb2b-8a46-45ba-8d8a-c7a466e89b8f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzgyMzJlYjJiLThhNDYtNDViYS04ZDhhLWM3YTQ2NmU4OWI4ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -460,7 +472,7 @@
"no-cache"
],
"x-ms-request-id": [
- "5585c5c1-e2b1-4cc7-a54a-6ecbd7e86f95"
+ "5cc52c9d-d636-4b66-b8c1-51a66f6c96c2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -469,22 +481,19 @@
"14998"
],
"x-ms-correlation-request-id": [
- "3bd684b9-08c8-438a-9d9b-a745c5b2ae5d"
+ "ce0149f7-a193-48ed-9e9e-72a724b5cc8f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024035Z:3bd684b9-08c8-438a-9d9b-a745c5b2ae5d"
+ "AUSTRALIAEAST:20180607T130424Z:ce0149f7-a193-48ed-9e9e-72a724b5cc8f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:34 GMT"
+ "Thu, 07 Jun 2018 13:04:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -499,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6a8309b5-a204-4641-aac3-1f053169a29b0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZhODMwOWI1LWEyMDQtNDY0MS1hYWMzLTFmMDUzMTY5YTI5YjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/8232eb2b-8a46-45ba-8d8a-c7a466e89b8f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzgyMzJlYjJiLThhNDYtNDViYS04ZDhhLWM3YTQ2NmU4OWI4ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -526,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5f38060f-5be6-4967-9e74-0b5f4bfc4ac6"
+ "d25d930e-b914-45ba-a599-ebda15663358"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14997"
],
"x-ms-correlation-request-id": [
- "b12e745a-4b85-43a0-8ad4-081ceed4f9e9"
+ "eada9817-4f6c-4cf9-8927-7065569da1ae"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024046Z:b12e745a-4b85-43a0-8ad4-081ceed4f9e9"
+ "AUSTRALIAEAST:20180607T130436Z:eada9817-4f6c-4cf9-8927-7065569da1ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:45 GMT"
+ "Thu, 07 Jun 2018 13:04:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -565,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6a8309b5-a204-4641-aac3-1f053169a29b0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZhODMwOWI1LWEyMDQtNDY0MS1hYWMzLTFmMDUzMTY5YTI5YjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/8232eb2b-8a46-45ba-8d8a-c7a466e89b8f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzgyMzJlYjJiLThhNDYtNDViYS04ZDhhLWM3YTQ2NmU4OWI4ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -592,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0940d461-5d0a-4740-9f93-0dfe6fba74d3"
+ "839dcba6-e716-4443-93b4-c8dbac422548"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14996"
],
"x-ms-correlation-request-id": [
- "89b71eb4-1e43-413e-b1d3-477d14f04199"
+ "d746c3d1-d444-4236-9788-c6359bc36bcd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024056Z:89b71eb4-1e43-413e-b1d3-477d14f04199"
+ "AUSTRALIAEAST:20180607T130447Z:d746c3d1-d444-4236-9788-c6359bc36bcd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:56 GMT"
+ "Thu, 07 Jun 2018 13:04:47 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -631,25 +634,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "68a0d23b-9d59-4a9d-a989-f4432b718e93"
+ "c8ed80ff-e502-4fc3-86b3-89df6e618b01"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1231' under resource group 'ps1339' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6881' under resource group 'ps9366' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -667,46 +670,49 @@
"gateway"
],
"x-ms-request-id": [
- "357182a5-51a7-44aa-8edb-53cb31b04041"
+ "37c0b637-cfe6-4e2b-b79a-b265b06b216b"
],
"x-ms-correlation-request-id": [
- "357182a5-51a7-44aa-8edb-53cb31b04041"
+ "37c0b637-cfe6-4e2b-b79a-b265b06b216b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024057Z:357182a5-51a7-44aa-8edb-53cb31b04041"
+ "AUSTRALIAEAST:20180607T130450Z:37c0b637-cfe6-4e2b-b79a-b265b06b216b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:57 GMT"
+ "Thu, 07 Jun 2018 13:04:49 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fc03851d-fa67-4b8c-8b80-bf9b44247a33"
+ "f43c87b3-20d2-47b0-8a41-6a0e5b5fa3c6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1231' under resource group 'ps1339' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6881' under resource group 'ps9366' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -724,43 +730,46 @@
"gateway"
],
"x-ms-request-id": [
- "053240dd-d119-4c1c-a7f0-a9a43a3ebf66"
+ "6d903257-e3c4-4083-8253-ac5895f629ba"
],
"x-ms-correlation-request-id": [
- "053240dd-d119-4c1c-a7f0-a9a43a3ebf66"
+ "6d903257-e3c4-4083-8253-ac5895f629ba"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024058Z:053240dd-d119-4c1c-a7f0-a9a43a3ebf66"
+ "AUSTRALIAEAST:20180607T130451Z:6d903257-e3c4-4083-8253-ac5895f629ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:40:57 GMT"
+ "Thu, 07 Jun 2018 13:04:50 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9412\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9412\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1231.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7be6a5b5-db5d-4426-a71c-fb4d77717260\",\r\n \"creationTime\": \"2017-12-07T02:41:02.2030594Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:41:02.2030594Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231\",\r\n \"name\": \"ps1231\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps263\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps263\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6881.azuredatalakeanalytics.net\",\r\n \"accountId\": \"502a826c-3450-4a5f-a42a-409c7be9cfc9\",\r\n \"creationTime\": \"2018-06-07T13:04:57.2474786Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:04:57.2474786Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881\",\r\n \"name\": \"ps6881\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -772,7 +781,7 @@
"no-cache"
],
"x-ms-request-id": [
- "613b3fb4-ed91-4a23-8e86-27481ee939a0"
+ "229a4d7f-b09f-4963-84d3-86ae17a09728"
],
"X-Content-Type-Options": [
"nosniff"
@@ -781,22 +790,19 @@
"14994"
],
"x-ms-correlation-request-id": [
- "d30bd2ac-b17a-462f-ba5f-5325c10caa9a"
+ "85d570c3-9175-49be-adfd-922eca4d385e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024133Z:d30bd2ac-b17a-462f-ba5f-5325c10caa9a"
+ "AUSTRALIAEAST:20180607T130531Z:85d570c3-9175-49be-adfd-922eca4d385e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:32 GMT"
+ "Thu, 07 Jun 2018 13:05:31 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -811,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d692691d-f4b0-40af-9073-be7cdb47d685"
+ "3db02307-2dc8-4ed3-8e92-bdafb22fcd08"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9412\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9412\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1231.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7be6a5b5-db5d-4426-a71c-fb4d77717260\",\r\n \"creationTime\": \"2017-12-07T02:41:02.2030594Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:41:02.2030594Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231\",\r\n \"name\": \"ps1231\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps263\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps263\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6881.azuredatalakeanalytics.net\",\r\n \"accountId\": \"502a826c-3450-4a5f-a42a-409c7be9cfc9\",\r\n \"creationTime\": \"2018-06-07T13:04:57.2474786Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:04:57.2474786Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881\",\r\n \"name\": \"ps6881\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -844,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "28ccb1db-d121-4d1e-9924-f83b9cc0f6b5"
+ "7da073b6-8334-40da-8976-8ae0f1a9c4eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14993"
],
"x-ms-correlation-request-id": [
- "f94b920c-c470-4162-9865-21867522ad4e"
+ "cf1c1399-d56f-4f6c-bf51-caff18e6527f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024133Z:f94b920c-c470-4162-9865-21867522ad4e"
+ "AUSTRALIAEAST:20180607T130533Z:cf1c1399-d56f-4f6c-bf51-caff18e6527f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:33 GMT"
+ "Thu, 07 Jun 2018 13:05:32 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -883,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e51a53c-bd5d-47ab-af10-7c8b4ba5ee54"
+ "871f5ea9-17e3-4636-98a1-4ea3f4ba1c8c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9412\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9412\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1231.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7be6a5b5-db5d-4426-a71c-fb4d77717260\",\r\n \"creationTime\": \"2017-12-07T02:41:02.2030594Z\",\r\n \"lastModifiedTime\": \"2017-12-07T02:41:02.2030594Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231\",\r\n \"name\": \"ps1231\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps263\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps263\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6881.azuredatalakeanalytics.net\",\r\n \"accountId\": \"502a826c-3450-4a5f-a42a-409c7be9cfc9\",\r\n \"creationTime\": \"2018-06-07T13:04:57.2474786Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:04:57.2474786Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881\",\r\n \"name\": \"ps6881\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -916,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "24bf5714-d63b-449a-9c6e-d73e96ac0cb4"
+ "22ee1fd6-9638-43e7-ba92-ff6f345ddee4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14992"
],
"x-ms-correlation-request-id": [
- "2be07945-2821-41d0-bf75-9de02e38a5f0"
+ "a1e20db8-c2c7-4052-ae96-cf40a945f515"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024135Z:2be07945-2821-41d0-bf75-9de02e38a5f0"
+ "AUSTRALIAEAST:20180607T130539Z:a1e20db8-c2c7-4052-ae96-cf40a945f515"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:35 GMT"
+ "Thu, 07 Jun 2018 13:05:39 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -955,25 +955,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff41e2d1-67c0-455b-b7ba-77733315faa4"
+ "4072240b-b7a4-4a7c-b431-e40edd5e7e17"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1231' under resource group 'ps1339' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6881' under resource group 'ps9366' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -991,46 +991,49 @@
"gateway"
],
"x-ms-request-id": [
- "fd5c746c-a098-4c06-87df-317b706a585d"
+ "c563c9b0-8ef9-411e-bc5a-36ef1ef4b458"
],
"x-ms-correlation-request-id": [
- "fd5c746c-a098-4c06-87df-317b706a585d"
+ "c563c9b0-8ef9-411e-bc5a-36ef1ef4b458"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024139Z:fd5c746c-a098-4c06-87df-317b706a585d"
+ "AUSTRALIAEAST:20180607T130544Z:c563c9b0-8ef9-411e-bc5a-36ef1ef4b458"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:39 GMT"
+ "Thu, 07 Jun 2018 13:05:43 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90b7ffb4-486d-4a4a-90e2-b54397274b27"
+ "f6c9a4b8-341a-49d6-9f46-0a39b995316c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1231' under resource group 'ps1339' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6881' under resource group 'ps9366' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1048,55 +1051,58 @@
"gateway"
],
"x-ms-request-id": [
- "4335a422-3f02-45d2-a550-eb10f505d106"
+ "404a36b9-ab9d-4e00-8991-689ef6c1dd18"
],
"x-ms-correlation-request-id": [
- "4335a422-3f02-45d2-a550-eb10f505d106"
+ "404a36b9-ab9d-4e00-8991-689ef6c1dd18"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024139Z:4335a422-3f02-45d2-a550-eb10f505d106"
+ "AUSTRALIAEAST:20180607T130545Z:404a36b9-ab9d-4e00-8991-689ef6c1dd18"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:39 GMT"
+ "Thu, 07 Jun 2018 13:05:44 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9412\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps9412\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps263\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps263\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "196"
],
"x-ms-client-request-id": [
- "f31b3680-b9a2-441c-aca2-9119b88ab245"
+ "f9ca1e19-ca8f-487d-978a-6d8ddf314f56"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9412\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9412\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7be6a5b5-db5d-4426-a71c-fb4d77717260\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231\",\r\n \"name\": \"ps1231\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps263\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps263\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"502a826c-3450-4a5f-a42a-409c7be9cfc9\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881\",\r\n \"name\": \"ps6881\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "485"
],
"Content-Type": [
"application/json"
@@ -1111,10 +1117,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7be6a5b5-db5d-4426-a71c-fb4d777172600?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/502a826c-3450-4a5f-a42a-409c7be9cfc90?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "376ba3da-aee1-426a-ae40-28dee26ff307"
+ "47407bf0-8c77-48ec-b666-bc88da5976e0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1123,25 +1129,22 @@
"1199"
],
"x-ms-correlation-request-id": [
- "27504913-7230-4328-ad4e-f6190fe1ee60"
+ "4975fdb9-354f-4c19-abe5-681d01b56272"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024100Z:27504913-7230-4328-ad4e-f6190fe1ee60"
+ "AUSTRALIAEAST:20180607T130456Z:4975fdb9-354f-4c19-abe5-681d01b56272"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:00 GMT"
+ "Thu, 07 Jun 2018 13:04:55 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1156,16 +1159,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7be6a5b5-db5d-4426-a71c-fb4d777172600?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83YmU2YTViNS1kYjVkLTQ0MjYtYTcxYy1mYjRkNzc3MTcyNjAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/502a826c-3450-4a5f-a42a-409c7be9cfc90?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81MDJhODI2Yy0zNDUwLTRhNWYtYTQyYS00MDljN2JlOWNmYzkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1183,31 +1186,28 @@
"no-cache"
],
"x-ms-request-id": [
- "72eef02e-2955-44fb-b09e-274673f1cb42"
+ "098e0fd1-8376-435f-a349-504d4955fbb3"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14997"
],
"x-ms-correlation-request-id": [
- "194138cd-8195-4051-9847-d58d8500dd8d"
+ "9985e94f-1e36-419a-a98e-e31afe32c3b3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024111Z:194138cd-8195-4051-9847-d58d8500dd8d"
+ "AUSTRALIAEAST:20180607T130507Z:9985e94f-1e36-419a-a98e-e31afe32c3b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:10 GMT"
+ "Thu, 07 Jun 2018 13:05:07 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1222,16 +1222,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7be6a5b5-db5d-4426-a71c-fb4d777172600?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83YmU2YTViNS1kYjVkLTQ0MjYtYTcxYy1mYjRkNzc3MTcyNjAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/502a826c-3450-4a5f-a42a-409c7be9cfc90?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81MDJhODI2Yy0zNDUwLTRhNWYtYTQyYS00MDljN2JlOWNmYzkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1249,31 +1249,28 @@
"no-cache"
],
"x-ms-request-id": [
- "178e1cfd-7d3f-4425-bbd4-71a76a8264ae"
+ "69293d94-342d-47dc-b22d-adeae270d5d5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14996"
],
"x-ms-correlation-request-id": [
- "9f4d6f41-ff2a-4ed8-b4a0-d2e4a1db2a21"
+ "9b9b3f3d-af4a-4692-9e18-83f9f26ff8b5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024121Z:9f4d6f41-ff2a-4ed8-b4a0-d2e4a1db2a21"
+ "AUSTRALIAEAST:20180607T130518Z:9b9b3f3d-af4a-4692-9e18-83f9f26ff8b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:21 GMT"
+ "Thu, 07 Jun 2018 13:05:18 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1288,16 +1285,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7be6a5b5-db5d-4426-a71c-fb4d777172600?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83YmU2YTViNS1kYjVkLTQ0MjYtYTcxYy1mYjRkNzc3MTcyNjAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/502a826c-3450-4a5f-a42a-409c7be9cfc90?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81MDJhODI2Yy0zNDUwLTRhNWYtYTQyYS00MDljN2JlOWNmYzkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1315,31 +1312,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2e37931d-675c-490c-b857-1ae035edc4cd"
+ "6143f185-a9a6-4ff8-9480-074d7e1c3d39"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14995"
],
"x-ms-correlation-request-id": [
- "d032ee3c-ba96-4b71-8afe-6a062a09e35a"
+ "53ca1f49-6b27-41ec-ac4b-7ea11c8bd050"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024132Z:d032ee3c-ba96-4b71-8afe-6a062a09e35a"
+ "AUSTRALIAEAST:20180607T130530Z:53ca1f49-6b27-41ec-ac4b-7ea11c8bd050"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:31 GMT"
+ "Thu, 07 Jun 2018 13:05:30 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1354,22 +1348,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20ge%20datetimeoffset'2017-12-07T02:41:02.2030594%2B00:00'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE3LTEyLTA3VDAyJTNBNDElM0EwMi4yMDMwNTk0JTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs?$filter=submitTime%20ge%20datetimeoffset'2018-06-07T13:04:57.2474786%2B00:00'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE4LTA2LTA3VDEzJTNBMDQlM0E1Ny4yNDc0Nzg2JTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a642aa38-517e-4b3a-9061-5a7b2d4002fd"
+ "c5acb648-3902-4d14-aaa7-01b7cd8aea58"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1384,7 +1378,7 @@
"chunked"
],
"x-ms-request-id": [
- "bdb69708-7688-4910-ae4d-f39a198a7f0e"
+ "06755779-2248-41d6-8bda-ec98002fad26"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1396,28 +1390,28 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:34 GMT"
+ "Thu, 07 Jun 2018 13:05:37 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeAnalytics/accounts/ps1231?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTIzMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeAnalytics/accounts/ps6881?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d906713-87cd-4d4c-806b-5cf4ca0962ac"
+ "2c773d9b-daff-4d01-8616-8bc1aaf4e5e6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -1432,28 +1426,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0cad0a2c-2599-4662-8f6d-054207736b21"
+ "54ec6eff-eec6-430a-a2f3-e6be28fe313b"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "cca75a66-4834-40c1-a9fe-ebb284ac852c"
+ "72659fb8-61c3-4b20-a97d-7a03829057ab"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024138Z:cca75a66-4834-40c1-a9fe-ebb284ac852c"
+ "AUSTRALIAEAST:20180607T130544Z:72659fb8-61c3-4b20-a97d-7a03829057ab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:38 GMT"
+ "Thu, 07 Jun 2018 13:05:43 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1468,19 +1462,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1339/providers/Microsoft.DataLakeStore/accounts/ps9412?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTMzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NDEyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9366/providers/Microsoft.DataLakeStore/accounts/ps263?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTM2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyNjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b5f68bc8-99b2-4ea6-bae9-683d1310eaf0"
+ "c4cb446c-8ba7-4904-b8de-ba7c3f14b234"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1498,28 +1492,28 @@
"no-cache"
],
"x-ms-request-id": [
- "829eb3e2-f62f-4288-9901-c8ef1d7d156f"
+ "96020fc9-3917-4f4c-a8a2-a45303a3fc65"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "e5a1a58b-7f77-41cf-8693-a001036460e9"
+ "36429963-96c9-440d-8a65-ecfc1ab03977"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024144Z:e5a1a58b-7f77-41cf-8693-a001036460e9"
+ "AUSTRALIAEAST:20180607T130552Z:36429963-96c9-440d-8a65-ecfc1ab03977"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:43 GMT"
+ "Thu, 07 Jun 2018 13:05:51 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1534,13 +1528,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1339?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMTMzOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9366?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTM2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4953ec1a-430d-4b8d-b5b8-da2fd2d81e44"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1557,44 +1560,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-request-id": [
- "79453f64-ef9f-4596-bf0b-a59faf3d0eb7"
+ "e17d6145-d567-46aa-947b-d16c7c059eb6"
],
"x-ms-correlation-request-id": [
- "79453f64-ef9f-4596-bf0b-a59faf3d0eb7"
+ "e17d6145-d567-46aa-947b-d16c7c059eb6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024146Z:79453f64-ef9f-4596-bf0b-a59faf3d0eb7"
+ "AUSTRALIAEAST:20180607T130556Z:e17d6145-d567-46aa-947b-d16c7c059eb6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:45 GMT"
+ "Thu, 07 Jun 2018 13:05:56 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek16a3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5qWXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1612,43 +1618,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14974"
+ "14999"
],
"x-ms-request-id": [
- "e1d7c6c4-3156-4503-87e9-13d208b31e0f"
+ "8d68e7af-ef75-43bc-9709-c2f5b3f8cefc"
],
"x-ms-correlation-request-id": [
- "e1d7c6c4-3156-4503-87e9-13d208b31e0f"
+ "8d68e7af-ef75-43bc-9709-c2f5b3f8cefc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024146Z:e1d7c6c4-3156-4503-87e9-13d208b31e0f"
+ "AUSTRALIAEAST:20180607T130611Z:8d68e7af-ef75-43bc-9709-c2f5b3f8cefc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:41:46 GMT"
+ "Thu, 07 Jun 2018 13:06:11 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek16a3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5qWXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1666,43 +1675,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14973"
+ "14998"
],
"x-ms-request-id": [
- "36713115-013b-4d3a-a296-51cde105bdb4"
+ "249eab5c-e07b-4d57-939b-725b48585f6d"
],
"x-ms-correlation-request-id": [
- "36713115-013b-4d3a-a296-51cde105bdb4"
+ "249eab5c-e07b-4d57-939b-725b48585f6d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024202Z:36713115-013b-4d3a-a296-51cde105bdb4"
+ "AUSTRALIAEAST:20180607T130627Z:249eab5c-e07b-4d57-939b-725b48585f6d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:42:01 GMT"
+ "Thu, 07 Jun 2018 13:06:27 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek16a3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5qWXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1716,47 +1728,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14997"
],
"x-ms-request-id": [
- "0f5c5982-210b-4969-aafc-8fab583fe46a"
+ "2d1cc6b2-2345-4f76-8817-7044720ee6ed"
],
"x-ms-correlation-request-id": [
- "0f5c5982-210b-4969-aafc-8fab583fe46a"
+ "2d1cc6b2-2345-4f76-8817-7044720ee6ed"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024217Z:0f5c5982-210b-4969-aafc-8fab583fe46a"
+ "AUSTRALIAEAST:20180607T130642Z:2d1cc6b2-2345-4f76-8817-7044720ee6ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:42:16 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 13:06:42 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek16a3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5qWXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1771,25 +1780,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14971"
+ "14996"
],
"x-ms-request-id": [
- "ac8c007d-06ef-41fd-ad9d-5aef28e58cd7"
+ "845937d2-35f9-4988-afbf-b7fbafddfe6e"
],
"x-ms-correlation-request-id": [
- "ac8c007d-06ef-41fd-ad9d-5aef28e58cd7"
+ "845937d2-35f9-4988-afbf-b7fbafddfe6e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T024232Z:ac8c007d-06ef-41fd-ad9d-5aef28e58cd7"
+ "AUSTRALIAEAST:20180607T130643Z:845937d2-35f9-4988-afbf-b7fbafddfe6e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 02:42:31 GMT"
+ "Thu, 07 Jun 2018 13:06:42 GMT"
]
},
"StatusCode": 200
@@ -1797,9 +1809,9 @@
],
"Names": {
"": [
- "ps1339",
- "ps1231",
- "ps9412"
+ "ps9366",
+ "ps6881",
+ "ps263"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaAccount.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaAccount.json
index 83113d0333ab..06fb95f67512 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaAccount.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaAccount.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,22 +28,25 @@
"1198"
],
"x-ms-request-id": [
- "0d6ecaee-158b-4364-9cfe-ed49ed188d97"
+ "8d364c9d-2e78-4117-a946-5d07300119f8"
],
"x-ms-correlation-request-id": [
- "0d6ecaee-158b-4364-9cfe-ed49ed188d97"
+ "8d364c9d-2e78-4117-a946-5d07300119f8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033850Z:0d6ecaee-158b-4364-9cfe-ed49ed188d97"
+ "AUSTRALIAEAST:20180607T140930Z:8d364c9d-2e78-4117-a946-5d07300119f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:38:49 GMT"
+ "Thu, 07 Jun 2018 14:09:30 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,49 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14998"
],
"x-ms-request-id": [
- "9cd33d46-fd13-446c-b379-63fb07ddc277"
+ "32b5933b-71e2-4b78-90b1-536f5412d65a"
],
"x-ms-correlation-request-id": [
- "9cd33d46-fd13-446c-b379-63fb07ddc277"
+ "32b5933b-71e2-4b78-90b1-536f5412d65a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033850Z:9cd33d46-fd13-446c-b379-63fb07ddc277"
+ "AUSTRALIAEAST:20180607T140931Z:32b5933b-71e2-4b78-90b1-536f5412d65a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:38:50 GMT"
+ "Thu, 07 Jun 2018 14:09:30 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg18399?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTgzOTk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg12435?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTI0MzU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg18399\",\r\n \"name\": \"abarg18399\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg12435\",\r\n \"name\": \"abarg12435\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"174"
@@ -130,29 +136,32 @@
"1197"
],
"x-ms-request-id": [
- "61b6325d-8b36-42b9-a6f4-7951de74db0a"
+ "0a64af08-8c63-4dbd-92a9-94fd17e3457e"
],
"x-ms-correlation-request-id": [
- "61b6325d-8b36-42b9-a6f4-7951de74db0a"
+ "0a64af08-8c63-4dbd-92a9-94fd17e3457e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033859Z:61b6325d-8b36-42b9-a6f4-7951de74db0a"
+ "AUSTRALIAEAST:20180607T140946Z:0a64af08-8c63-4dbd-92a9-94fd17e3457e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:38:59 GMT"
+ "Thu, 07 Jun 2018 14:09:46 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg18399?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTgzOTk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg12435?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTI0MzU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -160,7 +169,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg18399\",\r\n \"name\": \"abarg18399\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg12435\",\r\n \"name\": \"abarg12435\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"174"
@@ -175,43 +184,46 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14997"
],
"x-ms-request-id": [
- "9e09ec87-62c4-4b60-85ce-1e0308bb8bbe"
+ "cec94646-4148-4483-af33-91e79be8704d"
],
"x-ms-correlation-request-id": [
- "9e09ec87-62c4-4b60-85ce-1e0308bb8bbe"
+ "cec94646-4148-4483-af33-91e79be8704d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033859Z:9e09ec87-62c4-4b60-85ce-1e0308bb8bbe"
+ "AUSTRALIAEAST:20180607T140947Z:cec94646-4148-4483-af33-91e79be8704d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:38:59 GMT"
+ "Thu, 07 Jun 2018 14:09:46 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg18399/providers/Microsoft.Storage/storageAccounts/azureblob019621?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTgzOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTk2MjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg12435/providers/Microsoft.Storage/storageAccounts/azureblob016186?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTI0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTYxODY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "91"
+ "89"
],
"x-ms-client-request-id": [
- "111d0630-620a-44ee-9e05-028f103e3f99"
+ "1ee80f75-7940-41ae-b376-7896f1da6869"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
@@ -222,6 +234,9 @@
"Content-Length": [
"0"
],
+ "Content-Type": [
+ "text/plain; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -231,45 +246,47 @@
"Retry-After": [
"17"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
"x-ms-request-id": [
- "81fe27b9-1ffa-482c-b37d-b23e5b680555"
- ],
- "Cache-Control": [
- "no-cache"
+ "fbda225b-053d-401f-913b-cc20a5efb263"
],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/cb6d8f3a-3e94-456a-aefd-ce5faad53dc3?monitor=true&api-version=2015-06-15"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
],
"x-ms-correlation-request-id": [
- "81fe27b9-1ffa-482c-b37d-b23e5b680555"
+ "12164403-e538-4d21-8cef-08a4802affd2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033901Z:81fe27b9-1ffa-482c-b37d-b23e5b680555"
+ "AUSTRALIAEAST:20180607T140950Z:12164403-e538-4d21-8cef-08a4802affd2"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:00 GMT"
+ "Thu, 07 Jun 2018 14:09:50 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fbda225b-053d-401f-913b-cc20a5efb263?monitor=true&api-version=2015-06-15"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/cb6d8f3a-3e94-456a-aefd-ce5faad53dc3?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvY2I2ZDhmM2EtM2U5NC00NTZhLWFlZmQtY2U1ZmFhZDUzZGMzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fbda225b-053d-401f-913b-cc20a5efb263?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZmJkYTIyNWItMDUzZC00MDFmLTkxM2ItY2MyMGE1ZWZiMjYzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f23c1f01-698b-4531-8e92-e1c4a57888f6"
+ "dfa4cf82-01ae-4090-b2a7-97fc8eaaa5d3"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
@@ -280,6 +297,9 @@
"Content-Length": [
"0"
],
+ "Content-Type": [
+ "text/plain; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -289,54 +309,56 @@
"Retry-After": [
"17"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
"x-ms-request-id": [
- "a4a9137c-956b-48be-a372-aaae83791ed7"
+ "5b62243e-bbb7-4950-bb30-fcbba376d7cd"
],
- "Cache-Control": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/cb6d8f3a-3e94-456a-aefd-ce5faad53dc3?monitor=true&api-version=2015-06-15"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "a4a9137c-956b-48be-a372-aaae83791ed7"
+ "a0efe4b7-e982-4e81-9537-448a06c3b680"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033901Z:a4a9137c-956b-48be-a372-aaae83791ed7"
+ "AUSTRALIAEAST:20180607T140951Z:a0efe4b7-e982-4e81-9537-448a06c3b680"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:00 GMT"
+ "Thu, 07 Jun 2018 14:09:51 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fbda225b-053d-401f-913b-cc20a5efb263?monitor=true&api-version=2015-06-15"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/cb6d8f3a-3e94-456a-aefd-ce5faad53dc3?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvY2I2ZDhmM2EtM2U5NC00NTZhLWFlZmQtY2U1ZmFhZDUzZGMzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fbda225b-053d-401f-913b-cc20a5efb263?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZmJkYTIyNWItMDUzZC00MDFmLTkxM2ItY2MyMGE1ZWZiMjYzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0bb42ba-53eb-4073-9d1f-e78eb82fe8bc"
+ "e9f988f1-e7ce-4415-ad4a-31d1ad31f8c3"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "68"
+ "89"
],
"Content-Type": [
"application/json"
@@ -348,50 +370,52 @@
"no-cache"
],
"x-ms-request-id": [
- "d2e47d50-b2e9-4568-af22-eca4ba3eeb3c"
+ "dce9d3b3-8121-4c70-8e68-4df20e48d82c"
],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14995"
],
"x-ms-correlation-request-id": [
- "d2e47d50-b2e9-4568-af22-eca4ba3eeb3c"
+ "ffc987f7-657e-4d02-9033-982ad702761c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033918Z:d2e47d50-b2e9-4568-af22-eca4ba3eeb3c"
+ "AUSTRALIAEAST:20180607T141008Z:ffc987f7-657e-4d02-9033-982ad702761c"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:18 GMT"
+ "Thu, 07 Jun 2018 14:10:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg18399/providers/Microsoft.Storage/storageAccounts/azureblob019621/listKeys?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTgzOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTk2MjEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg12435/providers/Microsoft.Storage/storageAccounts/azureblob016186/listKeys?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTI0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTYxODYvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "054ec599-280f-4a24-9ed0-8c95ab8ba48c"
+ "7a357d2a-a4fb-4fd2-9c3e-c17952b590d6"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"key1\": \"/0PAuV8805uSlltTsqsUtuJGctA+Nd+0WaQxF3yLCvLSS5q/TiXRO/sPVnMDHM5pivTK2po3PtBZ4Grqst+giA==\",\r\n \"key2\": \"YWtSJ40rOaY+5Asxu3PC1vbO3tl/5gS/0ikTxXfEL3/OTLrxUeNDEDIW9r/ZwX7PrYLWy4iW7zKiiWhpRJcWPQ==\"\r\n}",
+ "ResponseBody": "{\r\n \"key1\": \"g00bWHM0yyRDKxymgC1vqzWKKx7J6v+0vEd26BjcUUQpk3vyw91lFV91tIv7/Kdz5QniuRsbPQT+q6HIsI0B0w==\",\r\n \"key2\": \"qX66YC8ruNfGYK61lffQ+5bmJa3J+YW3hQAOg3TTDyTQgWzPCh65S5XR8y3RMFnKjLBAkRa0ZZav3C7noabTwQ==\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "198"
+ "197"
],
"Content-Type": [
"application/json"
@@ -403,50 +427,52 @@
"no-cache"
],
"x-ms-request-id": [
- "49888374-5ecf-42cf-b2a9-ed5d1514b8ea"
+ "82a79b19-3f85-4c15-acc0-78ce66fca851"
],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "49888374-5ecf-42cf-b2a9-ed5d1514b8ea"
+ "6ad73a37-7a15-4065-ad99-01fbea34d72a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033919Z:49888374-5ecf-42cf-b2a9-ed5d1514b8ea"
+ "AUSTRALIAEAST:20180607T141009Z:6ad73a37-7a15-4065-ad99-01fbea34d72a"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:19 GMT"
+ "Thu, 07 Jun 2018 14:10:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg18399/providers/Microsoft.Storage/storageAccounts/azureblob019621?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTgzOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTk2MjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg12435/providers/Microsoft.Storage/storageAccounts/azureblob016186?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL2FiYXJnMTI0MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTYxODY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e4cf91a-9c97-4dec-9927-36db280be098"
+ "af2239f5-1e59-4c91-9b13-1a2fc68c7216"
],
"User-Agent": [
"Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg18399/providers/Microsoft.Storage/storageAccounts/azureblob019621\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"azureblob019621\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-12-07T03:39:00.8028416Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azureblob019621.blob.core.windows.net/\",\r\n \"file\": \"https://azureblob019621.file.core.windows.net/\",\r\n \"queue\": \"https://azureblob019621.queue.core.windows.net/\",\r\n \"table\": \"https://azureblob019621.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/abarg12435/providers/Microsoft.Storage/storageAccounts/azureblob016186\",\r\n \"name\": \"azureblob016186\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-07T14:09:49.8949125Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azureblob016186.blob.core.windows.net/\",\r\n \"queue\": \"https://azureblob016186.queue.core.windows.net/\",\r\n \"table\": \"https://azureblob016186.table.core.windows.net/\",\r\n \"file\": \"https://azureblob016186.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "739"
+ "738"
],
"Content-Type": [
"application/json"
@@ -458,50 +484,61 @@
"no-cache"
],
"x-ms-request-id": [
- "6e7ecde6-af60-43ae-aab1-57d5e7852e26"
+ "5b3f1be9-3354-498a-8acc-0d0b14a4c8c7"
],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14994"
],
"x-ms-correlation-request-id": [
- "6e7ecde6-af60-43ae-aab1-57d5e7852e26"
+ "83f05d42-f2f5-452e-a50e-de5af768d298"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033919Z:6e7ecde6-af60-43ae-aab1-57d5e7852e26"
+ "AUSTRALIAEAST:20180607T141009Z:83f05d42-f2f5-452e-a50e-de5af768d298"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:19 GMT"
+ "Thu, 07 Jun 2018 14:10:09 GMT"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3957?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzk1Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4806?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDgwNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "e588558e-d765-40ae-91ad-4aa315ba97c0"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957\",\r\n \"name\": \"ps3957\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806\",\r\n \"name\": \"ps4806\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -516,49 +553,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-request-id": [
- "1664e7f3-d220-46f2-8de4-9d5d41573898"
+ "8b6da79b-e45a-43c8-93fa-29d7705a02ce"
],
"x-ms-correlation-request-id": [
- "1664e7f3-d220-46f2-8de4-9d5d41573898"
+ "8b6da79b-e45a-43c8-93fa-29d7705a02ce"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033920Z:1664e7f3-d220-46f2-8de4-9d5d41573898"
+ "AUSTRALIAEAST:20180607T141014Z:8b6da79b-e45a-43c8-93fa-29d7705a02ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:19 GMT"
+ "Thu, 07 Jun 2018 14:10:13 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1adf55c5-3bd4-4b01-8114-7aecf23ddd26"
+ "9d4254e6-71ec-4dd6-b675-89f3d61b1c42"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5061' under resource group 'ps3957' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2135' under resource group 'ps4806' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -576,46 +616,49 @@
"gateway"
],
"x-ms-request-id": [
- "f6be5be6-b329-4258-a472-a0310270f378"
+ "6f0f3b5b-8a2f-4470-bdc7-67906f6779df"
],
"x-ms-correlation-request-id": [
- "f6be5be6-b329-4258-a472-a0310270f378"
+ "6f0f3b5b-8a2f-4470-bdc7-67906f6779df"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033920Z:f6be5be6-b329-4258-a472-a0310270f378"
+ "AUSTRALIAEAST:20180607T141015Z:6f0f3b5b-8a2f-4470-bdc7-67906f6779df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:20 GMT"
+ "Thu, 07 Jun 2018 14:10:15 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95d88167-ac63-44e3-aba8-eee523cd2c85"
+ "c5164a4a-4ab2-492b-b19b-b829b775f99c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5061' under resource group 'ps3957' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2135' under resource group 'ps4806' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -633,46 +676,49 @@
"gateway"
],
"x-ms-request-id": [
- "03d2edea-9681-48f4-8b76-7cdd388ad496"
+ "cd584af9-9398-446e-91fd-5a0351761305"
],
"x-ms-correlation-request-id": [
- "03d2edea-9681-48f4-8b76-7cdd388ad496"
+ "cd584af9-9398-446e-91fd-5a0351761305"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034043Z:03d2edea-9681-48f4-8b76-7cdd388ad496"
+ "AUSTRALIAEAST:20180607T141142Z:cd584af9-9398-446e-91fd-5a0351761305"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:43 GMT"
+ "Thu, 07 Jun 2018 14:11:42 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cecd4a10-e78e-4e1f-b16a-985df8025396"
+ "7ed00ffb-5ae2-427d-a9db-1fdb31d7efa7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5061' under resource group 'ps3957' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2135' under resource group 'ps4806' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -690,43 +736,46 @@
"gateway"
],
"x-ms-request-id": [
- "5ffbf98f-4d30-4db4-934b-871cda6d5d92"
+ "9dee4c33-7625-494d-96e2-644ae3a82629"
],
"x-ms-correlation-request-id": [
- "5ffbf98f-4d30-4db4-934b-871cda6d5d92"
+ "9dee4c33-7625-494d-96e2-644ae3a82629"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034044Z:5ffbf98f-4d30-4db4-934b-871cda6d5d92"
+ "AUSTRALIAEAST:20180607T141142Z:9dee4c33-7625-494d-96e2-644ae3a82629"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:43 GMT"
+ "Thu, 07 Jun 2018 14:11:42 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:48.3397981Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:48.166175Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -738,31 +787,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0cc85e7d-0c19-49d9-97bb-257830ceee93"
+ "70004dd6-2611-45d0-8cf5-4b7e9a17a2b9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14981"
],
"x-ms-correlation-request-id": [
- "32f889cf-233c-489a-8a12-bf247c00d01c"
+ "73908b64-2de2-4b38-a8fa-97be4d1c2fac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034119Z:32f889cf-233c-489a-8a12-bf247c00d01c"
+ "AUSTRALIAEAST:20180607T141223Z:73908b64-2de2-4b38-a8fa-97be4d1c2fac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:18 GMT"
+ "Thu, 07 Jun 2018 14:12:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -777,28 +823,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "909e1989-e282-47ab-a73e-1cc34ea0d979"
+ "a7537e18-0a3a-48fc-a3cd-d3b9a0ff151c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:48.3397981Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:48.166175Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -810,31 +856,28 @@
"no-cache"
],
"x-ms-request-id": [
- "939f93db-a768-424b-a8c0-da448eb4efe7"
+ "63c82f31-3691-4f76-8681-12ab33283599"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14980"
],
"x-ms-correlation-request-id": [
- "2aa039e4-07f3-4b87-a7b9-9798068ef1d4"
+ "5b0e7a89-f65d-425f-8cb2-da8ea38bedca"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034120Z:2aa039e4-07f3-4b87-a7b9-9798068ef1d4"
+ "AUSTRALIAEAST:20180607T141224Z:5b0e7a89-f65d-425f-8cb2-da8ea38bedca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:19 GMT"
+ "Thu, 07 Jun 2018 14:12:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -849,28 +892,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ec3abb1-8428-4b7e-89a8-b32b34e2e521"
+ "3c37f193-c88a-44a8-9655-5ac2c3a19e8d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:48.3397981Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:48.166175Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -882,31 +925,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ab3f05d8-11bc-4401-8bb7-a95baef6f6a5"
+ "a6696ecb-65a6-47e0-8ac2-56442a820b2a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14979"
],
"x-ms-correlation-request-id": [
- "c1422b12-bd5d-48a6-8730-1c1958e62680"
+ "9bc073bb-a867-4b36-80d7-9ad908906205"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034120Z:c1422b12-bd5d-48a6-8730-1c1958e62680"
+ "AUSTRALIAEAST:20180607T141225Z:9bc073bb-a867-4b36-80d7-9ad908906205"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:20 GMT"
+ "Thu, 07 Jun 2018 14:12:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -921,28 +961,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d1a9cc13-332e-4b15-bbd6-52b222ac5d82"
+ "5ee7bda9-b917-4e04-9c73-5b37e1c50225"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:48.3397981Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:48.166175Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -954,31 +994,28 @@
"no-cache"
],
"x-ms-request-id": [
- "65723c27-4531-448f-a226-7400e9bd2b25"
+ "8c53c84b-e360-47e3-a03e-612c1f713773"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14977"
],
"x-ms-correlation-request-id": [
- "39e75fdd-6717-4bfd-8235-f2acf9f37347"
+ "fd8e0409-b53f-4dac-83bc-6342814e9853"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034122Z:39e75fdd-6717-4bfd-8235-f2acf9f37347"
+ "AUSTRALIAEAST:20180607T141228Z:fd8e0409-b53f-4dac-83bc-6342814e9853"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:21 GMT"
+ "Thu, 07 Jun 2018 14:12:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -993,28 +1030,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5aa4949-168d-41e2-bdaa-b35d8a441bd4"
+ "7e5891ac-4ef1-4456-9173-bd94c9987407"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:48.3397981Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:48.166175Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -1026,31 +1063,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2f21f9d3-5b82-4bda-a87c-71f99d01b8e3"
+ "187fce41-6afe-4fc6-8930-4eb88a26c862"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14976"
],
"x-ms-correlation-request-id": [
- "b052ff1c-d59b-4090-89d2-a1bf5c22a773"
+ "dd8234d6-6346-4bfb-97ac-aeaca4bcbeb6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034123Z:b052ff1c-d59b-4090-89d2-a1bf5c22a773"
+ "AUSTRALIAEAST:20180607T141230Z:dd8234d6-6346-4bfb-97ac-aeaca4bcbeb6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:23 GMT"
+ "Thu, 07 Jun 2018 14:12:29 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1065,28 +1099,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3cdf2ac8-2b89-4cbc-907a-4406fb211fc6"
+ "9ef898a6-d9f4-453d-808b-1ed26b0b35b0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:48.3397981Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:48.166175Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1214"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -1098,31 +1132,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7ab35d49-16aa-4a1f-992e-3eb0d01029a6"
+ "0ea5d345-2b1a-46c0-a96e-303b39b472dd"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14975"
],
"x-ms-correlation-request-id": [
- "cb2aa3e1-7f99-4cf5-9277-0d12bf57f9d5"
+ "0d906669-a088-4bc7-b2bd-1243ef9776b4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034123Z:cb2aa3e1-7f99-4cf5-9277-0d12bf57f9d5"
+ "AUSTRALIAEAST:20180607T141231Z:0d906669-a088-4bc7-b2bd-1243ef9776b4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:22 GMT"
+ "Thu, 07 Jun 2018 14:12:30 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1137,28 +1168,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "471b505c-4fd4-40dc-9e09-5a600052ece0"
+ "22fae1de-7c47-44fd-8594-2297345421ba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6217\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7484\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1302"
+ "1325"
],
"Content-Type": [
"application/json"
@@ -1170,31 +1201,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1663de1e-95fa-4be8-917d-369842303306"
+ "98777882-9023-49c9-b2dd-7a8f81d65137"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14970"
],
"x-ms-correlation-request-id": [
- "d98e43e7-75e3-486a-bea1-13caff4e0182"
+ "d468acef-8f92-4aca-9944-30dd4ad6ae36"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034130Z:d98e43e7-75e3-486a-bea1-13caff4e0182"
+ "AUSTRALIAEAST:20180607T141243Z:d468acef-8f92-4aca-9944-30dd4ad6ae36"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:30 GMT"
+ "Thu, 07 Jun 2018 14:12:43 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1209,28 +1237,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1483b33-ce10-462b-ba9e-6693819726bc"
+ "4ec2fb62-5576-460b-9d20-95ee08db240e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps6217\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7484\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1302"
+ "1325"
],
"Content-Type": [
"application/json"
@@ -1242,31 +1270,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c623585f-d469-43e5-9dfc-ca62f1faba69"
+ "2ca1169f-7652-44a0-b33b-11524115cf9a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14966"
],
"x-ms-correlation-request-id": [
- "325a645a-8e2e-46eb-9c7d-d8ec3d077ef6"
+ "c6a093ab-9b78-47ad-a6e3-2bf04bc9c6fd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034133Z:325a645a-8e2e-46eb-9c7d-d8ec3d077ef6"
+ "AUSTRALIAEAST:20180607T141248Z:c6a093ab-9b78-47ad-a6e3-2bf04bc9c6fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:32 GMT"
+ "Thu, 07 Jun 2018 14:12:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1281,28 +1306,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64762f37-2af2-4076-88b6-12c9e32c9a41"
+ "25fc3cd2-ce85-43ea-af95-2d7dc648bc36"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1235"
+ "1258"
],
"Content-Type": [
"application/json"
@@ -1314,31 +1339,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9b57e148-d731-496e-91b2-46108ed918a6"
+ "090b8237-3108-47b3-9df6-940212f81aef"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14961"
],
"x-ms-correlation-request-id": [
- "47b32677-6658-4948-ab8f-ae27e07eaa4e"
+ "9cb8e7fa-8fff-4cc4-b8f7-81b20f113fd8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034137Z:47b32677-6658-4948-ab8f-ae27e07eaa4e"
+ "AUSTRALIAEAST:20180607T141257Z:9cb8e7fa-8fff-4cc4-b8f7-81b20f113fd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:36 GMT"
+ "Thu, 07 Jun 2018 14:12:56 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1353,28 +1375,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2fbf023-59e4-4219-a9aa-7aa471d3d524"
+ "2fbe5466-ef9c-462e-87de-d3df41d8ffd3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob019621\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob016186\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1304"
+ "1327"
],
"Content-Type": [
"application/json"
@@ -1386,31 +1408,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d0694840-dfd5-439f-af95-5e46bd772660"
+ "1121d424-dffd-4362-8df4-59412aa7ddcf"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14958"
],
"x-ms-correlation-request-id": [
- "0298f773-c63c-43dc-9b54-f531c3187479"
+ "ef073b4f-b236-44ae-9a02-a32744a52cf7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034141Z:0298f773-c63c-43dc-9b54-f531c3187479"
+ "AUSTRALIAEAST:20180607T141304Z:ef073b4f-b236-44ae-9a02-a32744a52cf7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:41 GMT"
+ "Thu, 07 Jun 2018 14:13:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1425,28 +1444,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ca62024-296c-4049-95e6-9c35ed49fd97"
+ "ed6ed16c-9169-4b9d-8ea8-11a4956e6007"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob019621\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob016186\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1304"
+ "1327"
],
"Content-Type": [
"application/json"
@@ -1458,31 +1477,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2ecc3b0c-b1ad-4282-8c49-49c8a2b453f6"
+ "da47cd45-81a1-44c4-9b95-980812cbd002"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14954"
],
"x-ms-correlation-request-id": [
- "b8a471e3-16d0-4fa2-bfb2-7517763ce601"
+ "88c8d102-ae1a-45ea-9668-9fc3848be4f6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034144Z:b8a471e3-16d0-4fa2-bfb2-7517763ce601"
+ "AUSTRALIAEAST:20180607T141310Z:88c8d102-ae1a-45ea-9668-9fc3848be4f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:44 GMT"
+ "Thu, 07 Jun 2018 14:13:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1497,28 +1513,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a4a2ec8-2598-4dd9-a146-0ad5270dcaf8"
+ "ce8cb30b-bbd0-470f-ac13-c6d80ec853f1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1235"
+ "1258"
],
"Content-Type": [
"application/json"
@@ -1530,31 +1546,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0ade40c0-d423-4aac-87f5-8f3e97cd3b37"
+ "0a04e64c-25cf-46f6-8c8a-dad297611ea7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14949"
],
"x-ms-correlation-request-id": [
- "98221247-caa9-4f66-9c5b-f7a5669d07d7"
+ "ffedf506-32a5-4b58-ac29-e0a6cff02a5c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034148Z:98221247-caa9-4f66-9c5b-f7a5669d07d7"
+ "AUSTRALIAEAST:20180607T141318Z:ffedf506-32a5-4b58-ac29-e0a6cff02a5c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:48 GMT"
+ "Thu, 07 Jun 2018 14:13:18 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1569,28 +1582,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2bb71d1c-72b3-4b83-9c6b-63abbfe85898"
+ "f5b6b475-74ba-4b99-a869-59d5c0c67667"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1235"
+ "1258"
],
"Content-Type": [
"application/json"
@@ -1602,31 +1615,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a9f37a62-f347-4dbc-aa01-0b571fc1ff30"
+ "e55c1123-abb4-4075-821b-579c3ab80152"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14948"
],
"x-ms-correlation-request-id": [
- "5d50179b-0110-4450-8e61-c1e340e48acc"
+ "74fc8a94-5c4b-4e1e-9bf6-f1fe6918a305"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034149Z:5d50179b-0110-4450-8e61-c1e340e48acc"
+ "AUSTRALIAEAST:20180607T141320Z:74fc8a94-5c4b-4e1e-9bf6-f1fe6918a305"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:49 GMT"
+ "Thu, 07 Jun 2018 14:13:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1641,25 +1651,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f7c5f2ef-18c4-437c-a307-0b69b0752299"
+ "61afb4b5-a999-4135-a262-be0e977daf3e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5061' under resource group 'ps3957' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2135' under resource group 'ps4806' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1677,46 +1687,49 @@
"gateway"
],
"x-ms-request-id": [
- "2ed7de24-1f0d-4f8a-b490-dbb64a3bab13"
+ "ce37f7fa-cfc4-479e-a5d3-a88fff135371"
],
"x-ms-correlation-request-id": [
- "2ed7de24-1f0d-4f8a-b490-dbb64a3bab13"
+ "ce37f7fa-cfc4-479e-a5d3-a88fff135371"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034154Z:2ed7de24-1f0d-4f8a-b490-dbb64a3bab13"
+ "AUSTRALIAEAST:20180607T141325Z:ce37f7fa-cfc4-479e-a5d3-a88fff135371"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:54 GMT"
+ "Thu, 07 Jun 2018 14:13:25 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00564156-3192-408a-9402-7a62189e0f10"
+ "d9b1fd47-4b05-4581-b129-fcdc5c083e41"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5061' under resource group 'ps3957' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2135' under resource group 'ps4806' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1734,22 +1747,25 @@
"gateway"
],
"x-ms-request-id": [
- "51c5dd22-ae10-4af1-a44f-596a882147a8"
+ "921db747-27f5-4180-b9fa-73b4dd5aaaa9"
],
"x-ms-correlation-request-id": [
- "51c5dd22-ae10-4af1-a44f-596a882147a8"
+ "921db747-27f5-4180-b9fa-73b4dd5aaaa9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034154Z:51c5dd22-ae10-4af1-a44f-596a882147a8"
+ "AUSTRALIAEAST:20180607T141326Z:921db747-27f5-4180-b9fa-73b4dd5aaaa9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:54 GMT"
+ "Thu, 07 Jun 2018 14:13:25 GMT"
]
},
"StatusCode": 404
@@ -1761,25 +1777,25 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "add74442-493f-4624-9f16-b999e008cedf"
+ "3cf24178-7168-4d7c-abdb-0787a740b753"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "528"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1787,41 +1803,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "a54acb1e-9f11-42ad-8678-cc72d2dec130"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14988"
+ ],
+ "x-ms-request-id": [
+ "08acec07-fca7-4f2b-b37f-a4b6bcca4772"
],
"x-ms-correlation-request-id": [
- "7b265f70-5eca-454d-bdd3-bf06d2e2e6cb"
+ "08acec07-fca7-4f2b-b37f-a4b6bcca4772"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033921Z:7b265f70-5eca-454d-bdd3-bf06d2e2e6cb"
+ "AUSTRALIAEAST:20180607T141015Z:08acec07-fca7-4f2b-b37f-a4b6bcca4772"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:21 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 14:10:15 GMT"
]
},
"StatusCode": 200
@@ -1833,22 +1837,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dda93cf7-ae50-4a95-b7f3-08e33963bffc"
+ "2a919ba9-192c-41b3-8e17-dd0b8ad2d091"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:48.3397981Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:48.166175Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1018"
+ "497"
],
"Content-Type": [
"application/json"
@@ -1860,31 +1864,28 @@
"no-cache"
],
"x-ms-request-id": [
- "53eed1f6-5c51-4fc2-8469-29e72bbf828e"
+ "924300b1-fab7-4a34-9ed8-2a07b960d69b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14978"
],
"x-ms-correlation-request-id": [
- "1dca3f03-1418-4edf-8b70-7c89a8967cbb"
+ "e1c754db-767b-4c8a-bb56-72690b7361fc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034122Z:1dca3f03-1418-4edf-8b70-7c89a8967cbb"
+ "AUSTRALIAEAST:20180607T141227Z:e1c754db-767b-4c8a-bb56-72690b7361fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:21 GMT"
+ "Thu, 07 Jun 2018 14:12:26 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1905,22 +1906,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a979dcad-e17b-4d67-8a93-ce025c32a432"
+ "b75b545b-b2da-43ca-aa40-4ed2a00814a9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -1932,31 +1933,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f12e1741-3a92-417b-9505-2fad83f7bf68"
+ "117233b8-4c03-430a-8bb4-83dc2184c9a5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14973"
],
"x-ms-correlation-request-id": [
- "1d002d1a-eb78-49bf-917d-6b077a56ad19"
+ "0f063192-30ef-40f2-9fff-5a70636133a8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034127Z:1d002d1a-eb78-49bf-917d-6b077a56ad19"
+ "AUSTRALIAEAST:20180607T141237Z:0f063192-30ef-40f2-9fff-5a70636133a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:26 GMT"
+ "Thu, 07 Jun 2018 14:12:37 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1977,22 +1975,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29adfbf8-37e6-4f45-b50f-69e96ddd7b06"
+ "a70e63ae-89cc-4dbf-8aa4-35e3e52a0914"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2004,31 +2002,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a9a83fa3-28d4-4e5d-8990-55cce71a6e3a"
+ "aef6830b-0f9c-4de7-a9e7-309b0e55ece3"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14972"
],
"x-ms-correlation-request-id": [
- "a0fcf505-aff1-4f92-8d01-4b6aeea19f6e"
+ "ae733874-58c9-44cb-9114-79f5e53c808b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034128Z:a0fcf505-aff1-4f92-8d01-4b6aeea19f6e"
+ "AUSTRALIAEAST:20180607T141239Z:ae733874-58c9-44cb-9114-79f5e53c808b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:27 GMT"
+ "Thu, 07 Jun 2018 14:12:38 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2049,22 +2044,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbdba048-5763-4665-a1ae-66349ffaed78"
+ "b78cd9da-654e-4d94-a8fe-d44d28883d31"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2076,31 +2071,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2c299127-ec82-4a57-9a66-c207ee6e412d"
+ "b28e36c1-7b92-47a8-a87e-f32dfbb1aa37"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14971"
],
"x-ms-correlation-request-id": [
- "5c5f621c-fd62-4d19-a416-0a433636d774"
+ "575be42c-1319-4adc-b891-9ad6b72a7f73"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034129Z:5c5f621c-fd62-4d19-a416-0a433636d774"
+ "AUSTRALIAEAST:20180607T141242Z:575be42c-1319-4adc-b891-9ad6b72a7f73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:29 GMT"
+ "Thu, 07 Jun 2018 14:12:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2121,22 +2113,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e800ad2-2219-4505-9235-42b0913d8471"
+ "1c65f642-b014-46f3-8d26-a9d383521cd1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2148,31 +2140,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5297c273-637a-46ad-8cde-b93e9ba6a33e"
+ "f7afa6dc-5a91-4d90-914c-ffbf7b3caa9f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14969"
],
"x-ms-correlation-request-id": [
- "d05cb326-80f1-46d0-9c84-3bbd22db8460"
+ "6208a9cf-f84b-4e78-a843-6cd822c379b3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034131Z:d05cb326-80f1-46d0-9c84-3bbd22db8460"
+ "AUSTRALIAEAST:20180607T141244Z:6208a9cf-f84b-4e78-a843-6cd822c379b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:30 GMT"
+ "Thu, 07 Jun 2018 14:12:44 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2193,22 +2182,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8a041494-5955-4cee-a24b-93f3f03cf00b"
+ "3066a335-27a1-4f17-b834-76e32303aadb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2220,31 +2209,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b218be87-a9e6-40fc-92b5-cfa69409d058"
+ "d167f93e-bfc1-48e7-bbb0-c86242c2ab77"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14967"
],
"x-ms-correlation-request-id": [
- "6b113c96-3b32-4419-836e-9efacf930dfc"
+ "cfc0f9e9-5f89-49b7-bbac-3335746661a0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034132Z:6b113c96-3b32-4419-836e-9efacf930dfc"
+ "AUSTRALIAEAST:20180607T141247Z:cfc0f9e9-5f89-49b7-bbac-3335746661a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:32 GMT"
+ "Thu, 07 Jun 2018 14:12:47 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2265,22 +2251,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c727b7f6-5eab-4b53-bde2-f3bbd2d2ed2d"
+ "4762b7b3-6cc3-458c-a1ea-486ef12f988c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2292,31 +2278,28 @@
"no-cache"
],
"x-ms-request-id": [
- "20e4a409-3cfb-4f44-b672-a3c717ccd4ea"
+ "e47cfc42-65d6-4c7f-b3e6-0a0824f4f9d4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14963"
],
"x-ms-correlation-request-id": [
- "7b2f9705-caae-4feb-bc59-708eb0158412"
+ "73c6a6d4-9caf-470f-86b5-43bfd0e69786"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034135Z:7b2f9705-caae-4feb-bc59-708eb0158412"
+ "AUSTRALIAEAST:20180607T141253Z:73c6a6d4-9caf-470f-86b5-43bfd0e69786"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:35 GMT"
+ "Thu, 07 Jun 2018 14:12:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2337,22 +2320,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "498206ad-1f7c-4d9e-afdc-f6b0ab5e42ce"
+ "fac10923-35eb-47ca-8daf-d8ab768ea914"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2364,31 +2347,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ffa57b9f-2afb-4c29-92c8-1e06cbb97c44"
+ "b022152d-0a64-44ca-971d-3a70d37b7b1a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14962"
],
"x-ms-correlation-request-id": [
- "1c626d2c-585e-43ea-9c9c-f2caf84060b8"
+ "19d1f083-b001-400f-8b7d-7967b08c5c94"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034137Z:1c626d2c-585e-43ea-9c9c-f2caf84060b8"
+ "AUSTRALIAEAST:20180607T141255Z:19d1f083-b001-400f-8b7d-7967b08c5c94"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:36 GMT"
+ "Thu, 07 Jun 2018 14:12:55 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2409,22 +2389,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43016b93-ed3c-4c67-b730-6c21b7f1a0c4"
+ "56cb164e-0009-4987-ae3a-57f7416e3239"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2436,31 +2416,28 @@
"no-cache"
],
"x-ms-request-id": [
- "46c95565-6675-4f81-b9cb-97ce27f76d68"
+ "4e0695c2-d933-4c20-9aa4-bf7716b2b127"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14960"
],
"x-ms-correlation-request-id": [
- "113369d9-8bd5-4b0d-81d2-2fb93d6a6735"
+ "923b294e-fb85-4a8a-a973-5a57c6ce594e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034138Z:113369d9-8bd5-4b0d-81d2-2fb93d6a6735"
+ "AUSTRALIAEAST:20180607T141258Z:923b294e-fb85-4a8a-a973-5a57c6ce594e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:38 GMT"
+ "Thu, 07 Jun 2018 14:12:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2481,22 +2458,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd93d317-ab0f-419e-bec5-e0a062220814"
+ "71bca83a-ba00-4b70-a044-da7106579016"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2508,31 +2485,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ca44ed2f-0726-4dfb-a9c2-c98de3392414"
+ "a114f6df-af66-412d-a719-f669af107527"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14959"
],
"x-ms-correlation-request-id": [
- "a82d3688-4c6e-4803-b8b1-6447519f12c0"
+ "24586a20-5086-4477-b3e0-595149de6103"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034140Z:a82d3688-4c6e-4803-b8b1-6447519f12c0"
+ "AUSTRALIAEAST:20180607T141303Z:24586a20-5086-4477-b3e0-595149de6103"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:40 GMT"
+ "Thu, 07 Jun 2018 14:13:02 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2553,22 +2527,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30be52ab-f3e2-4013-a1c7-786f11c029a4"
+ "94e85419-0a96-400b-9b27-1471d0618c5d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2580,31 +2554,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ede64556-ecac-4e67-93dd-aedf16a6fe0e"
+ "050a9586-83c6-412a-a007-2b8de1d99601"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14957"
],
"x-ms-correlation-request-id": [
- "f5c450c7-1b3b-4918-8622-c9b0bfd330d4"
+ "fd5b1b10-ae5b-40d2-a8e0-a488e9a0977d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034142Z:f5c450c7-1b3b-4918-8622-c9b0bfd330d4"
+ "AUSTRALIAEAST:20180607T141305Z:fd5b1b10-ae5b-40d2-a8e0-a488e9a0977d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:41 GMT"
+ "Thu, 07 Jun 2018 14:13:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2625,22 +2596,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "edcb64b5-6751-43bc-8f5b-ce018ecff647"
+ "cc2369ce-f7f6-476b-a87f-de7014e3c858"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2652,31 +2623,28 @@
"no-cache"
],
"x-ms-request-id": [
- "90d0a4fc-b9f6-4a02-a119-63463ace79b9"
+ "1624a9f1-29b2-4124-83fb-b8620334c81b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14955"
],
"x-ms-correlation-request-id": [
- "3bdcbac8-a923-4f87-b0af-41443b17b6b4"
+ "6ca9e2a3-c5a5-438b-a913-92eb0e147e3b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034143Z:3bdcbac8-a923-4f87-b0af-41443b17b6b4"
+ "AUSTRALIAEAST:20180607T141308Z:6ca9e2a3-c5a5-438b-a913-92eb0e147e3b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:43 GMT"
+ "Thu, 07 Jun 2018 14:13:07 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2697,22 +2665,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "89c7dc0b-0d4e-49b8-a4ae-bd35e269bec3"
+ "177b5b4f-3ed4-4220-94f1-9b99547a782e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2724,31 +2692,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b87df7d5-abf6-4f47-a6af-9ce83f1c6d22"
+ "57bb2842-fab2-4c79-949b-b9d3eed38f6b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14951"
],
"x-ms-correlation-request-id": [
- "c5d3693a-82b1-4535-a6c1-04942f487be7"
+ "0eaac4d3-32e0-4b03-abf1-59fee26a6211"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034146Z:c5d3693a-82b1-4535-a6c1-04942f487be7"
+ "AUSTRALIAEAST:20180607T141314Z:0eaac4d3-32e0-4b03-abf1-59fee26a6211"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:45 GMT"
+ "Thu, 07 Jun 2018 14:13:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2769,22 +2734,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87e52586-2aad-46fc-9193-57db965911ce"
+ "6d05cb0f-da5a-4292-9491-5c58e6dbb252"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1039"
+ "520"
],
"Content-Type": [
"application/json"
@@ -2796,31 +2761,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f484f832-581b-4a68-bcd2-0b23379e8286"
+ "9fa640b2-6736-48ca-8c0d-3ae62ec0e95f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14950"
],
"x-ms-correlation-request-id": [
- "903ebf7c-1b5b-4a7e-b247-b1e4fb4455ff"
+ "ad3a3cee-fd0d-4f16-b1f6-57ea44d48f9f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034148Z:903ebf7c-1b5b-4a7e-b247-b1e4fb4455ff"
+ "AUSTRALIAEAST:20180607T141317Z:ad3a3cee-fd0d-4f16-b1f6-57ea44d48f9f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:48 GMT"
+ "Thu, 07 Jun 2018 14:13:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2835,28 +2797,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MzYyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cebd977b-474d-44c3-b3e0-db10df4e173d"
+ "0b332326-06af-434b-b069-fd15fc44761c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps908' under resource group 'ps3957' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps9362' under resource group 'ps4806' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "148"
+ "149"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2871,43 +2833,46 @@
"gateway"
],
"x-ms-request-id": [
- "21bf097f-a4a7-4ea6-b816-419f37f4e389"
+ "c921d64f-ed17-4f0b-8c28-07902424bac1"
],
"x-ms-correlation-request-id": [
- "21bf097f-a4a7-4ea6-b816-419f37f4e389"
+ "c921d64f-ed17-4f0b-8c28-07902424bac1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033922Z:21bf097f-a4a7-4ea6-b816-419f37f4e389"
+ "AUSTRALIAEAST:20180607T141017Z:c921d64f-ed17-4f0b-8c28-07902424bac1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:22 GMT"
+ "Thu, 07 Jun 2018 14:10:17 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MzYyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps908.azuredatalakestore.net\",\r\n \"accountId\": \"ec081ff3-2c0a-4602-8f77-467e8b82b9a5\",\r\n \"creationTime\": \"2017-12-07T03:39:27.9100288Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:39:27.9100288Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5b32178-296c-4b97-8aad-5ee5d9955b45\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908\",\r\n \"name\": \"ps908\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9362.azuredatalakestore.net\",\r\n \"accountId\": \"acfac076-57e7-4ffb-913f-c0cd13be9089\",\r\n \"creationTime\": \"2018-06-07T14:10:25.8813825Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:10:25.8813825Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"be3ebd0b-fc7f-4ebd-8f44-ea5e6238b7e4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362\",\r\n \"name\": \"ps9362\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "905"
+ "992"
],
"Content-Type": [
"application/json"
@@ -2919,31 +2884,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c16e92dc-1eaf-4e37-b04c-2291d45d6dca"
+ "8baa44e3-4604-4eee-9012-62d2b14f23f5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14992"
],
"x-ms-correlation-request-id": [
- "b769e714-106d-49ce-9da6-ddd2e37493b1"
+ "22c3c7cd-4165-45e9-925e-934edffe169d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033959Z:b769e714-106d-49ce-9da6-ddd2e37493b1"
+ "AUSTRALIAEAST:20180607T141100Z:22c3c7cd-4165-45e9-925e-934edffe169d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:58 GMT"
+ "Thu, 07 Jun 2018 14:11:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2958,28 +2920,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MzYyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a71a4dff-25b5-4136-9ff8-9141996a24ba"
+ "be3373ed-d6e5-4a16-941c-13ebba65edcb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps908.azuredatalakestore.net\",\r\n \"accountId\": \"ec081ff3-2c0a-4602-8f77-467e8b82b9a5\",\r\n \"creationTime\": \"2017-12-07T03:39:27.9100288Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:39:27.9100288Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5b32178-296c-4b97-8aad-5ee5d9955b45\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908\",\r\n \"name\": \"ps908\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9362.azuredatalakestore.net\",\r\n \"accountId\": \"acfac076-57e7-4ffb-913f-c0cd13be9089\",\r\n \"creationTime\": \"2018-06-07T14:10:25.8813825Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:10:25.8813825Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"be3ebd0b-fc7f-4ebd-8f44-ea5e6238b7e4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362\",\r\n \"name\": \"ps9362\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "905"
+ "992"
],
"Content-Type": [
"application/json"
@@ -2991,31 +2953,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6e70eebe-5d0c-4cba-b583-3f42e6df6ac3"
+ "2a7bec60-b060-44b6-99be-6ccda59b1535"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14977"
],
"x-ms-correlation-request-id": [
- "f250685b-0a99-43f4-b29a-ff716ca62840"
+ "8e31a601-7a85-4048-b79a-824223eb1bf4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034155Z:f250685b-0a99-43f4-b29a-ff716ca62840"
+ "AUSTRALIAEAST:20180607T141328Z:8e31a601-7a85-4048-b79a-824223eb1bf4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:54 GMT"
+ "Thu, 07 Jun 2018 14:13:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3030,31 +2989,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MzYyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "b57ef8d2-1eee-48e2-a838-1ba5b17c7b1c"
+ "b91324b3-f8f6-4eb1-9ded-7d0255bddcb3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ec081ff3-2c0a-4602-8f77-467e8b82b9a5\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908\",\r\n \"name\": \"ps908\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"acfac076-57e7-4ffb-913f-c0cd13be9089\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362\",\r\n \"name\": \"ps9362\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"560"
@@ -3072,10 +3031,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ec081ff3-2c0a-4602-8f77-467e8b82b9a50?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/acfac076-57e7-4ffb-913f-c0cd13be90890?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "c8755bf4-d3a9-42a3-934e-5ef790803753"
+ "06250692-5dea-4119-bff3-dddf41f1b0fa"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3084,25 +3043,22 @@
"1197"
],
"x-ms-correlation-request-id": [
- "536747e0-c48b-427c-949b-3693f36c0be9"
+ "1a0ea393-ae8d-425d-88bc-be363d36933c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033926Z:536747e0-c48b-427c-949b-3693f36c0be9"
+ "AUSTRALIAEAST:20180607T141025Z:1a0ea393-ae8d-425d-88bc-be363d36933c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:26 GMT"
+ "Thu, 07 Jun 2018 14:10:25 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3117,13 +3073,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ec081ff3-2c0a-4602-8f77-467e8b82b9a50?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VjMDgxZmYzLTJjMGEtNDYwMi04Zjc3LTQ2N2U4YjgyYjlhNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/acfac076-57e7-4ffb-913f-c0cd13be90890?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FjZmFjMDc2LTU3ZTctNGZmYi05MTNmLWMwY2QxM2JlOTA4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3144,31 +3100,28 @@
"no-cache"
],
"x-ms-request-id": [
- "08f7c898-f078-4958-80a7-45b6c820c8b5"
+ "85f86236-f1de-4c9f-991c-c64ffc61a81c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14995"
],
"x-ms-correlation-request-id": [
- "6be31647-308b-447a-bc1f-67b26b9fb091"
+ "fdca5830-c5ea-42ab-a72e-ddf7cd9c95d8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033936Z:6be31647-308b-447a-bc1f-67b26b9fb091"
+ "AUSTRALIAEAST:20180607T141036Z:fdca5830-c5ea-42ab-a72e-ddf7cd9c95d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:36 GMT"
+ "Thu, 07 Jun 2018 14:10:36 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3183,13 +3136,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ec081ff3-2c0a-4602-8f77-467e8b82b9a50?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VjMDgxZmYzLTJjMGEtNDYwMi04Zjc3LTQ2N2U4YjgyYjlhNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/acfac076-57e7-4ffb-913f-c0cd13be90890?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FjZmFjMDc2LTU3ZTctNGZmYi05MTNmLWMwY2QxM2JlOTA4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3210,31 +3163,28 @@
"no-cache"
],
"x-ms-request-id": [
- "12a154ad-0b99-47a2-81bd-c591fb4a672d"
+ "05e3354b-a8ef-46c7-906e-be17f0c4ab8e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "2e4d5a51-d390-4919-bc51-cfc790094093"
+ "0591f958-136e-40dd-99d9-6757f5d61837"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033947Z:2e4d5a51-d390-4919-bc51-cfc790094093"
+ "AUSTRALIAEAST:20180607T141048Z:0591f958-136e-40dd-99d9-6757f5d61837"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:47 GMT"
+ "Thu, 07 Jun 2018 14:10:47 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3249,13 +3199,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ec081ff3-2c0a-4602-8f77-467e8b82b9a50?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VjMDgxZmYzLTJjMGEtNDYwMi04Zjc3LTQ2N2U4YjgyYjlhNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/acfac076-57e7-4ffb-913f-c0cd13be90890?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FjZmFjMDc2LTU3ZTctNGZmYi05MTNmLWMwY2QxM2JlOTA4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3276,31 +3226,28 @@
"no-cache"
],
"x-ms-request-id": [
- "73a4c2eb-1cf6-4a8d-ad3c-c3a99294e32a"
+ "fde36118-08dd-403f-9c2f-448c966a5cc1"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14993"
],
"x-ms-correlation-request-id": [
- "410826bf-9ea8-4ff2-a6f6-fda0bf980905"
+ "82690b8d-5456-4813-bac9-e156cd28cef2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033958Z:410826bf-9ea8-4ff2-a6f6-fda0bf980905"
+ "AUSTRALIAEAST:20180607T141059Z:82690b8d-5456-4813-bac9-e156cd28cef2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:58 GMT"
+ "Thu, 07 Jun 2018 14:10:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3315,25 +3262,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MjE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cda99017-33ae-46f8-a9bc-9e81e9178887"
+ "f9dbd3a9-ba93-4cd1-aec8-247b384d8e2f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps6217' under resource group 'ps3957' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7484' under resource group 'ps4806' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -3351,43 +3298,46 @@
"gateway"
],
"x-ms-request-id": [
- "76fd782a-758b-44a3-a783-cea5b47d8621"
+ "5d4f3d14-8ffc-4baa-9bb2-ba97d2212d0c"
],
"x-ms-correlation-request-id": [
- "76fd782a-758b-44a3-a783-cea5b47d8621"
+ "5d4f3d14-8ffc-4baa-9bb2-ba97d2212d0c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T033959Z:76fd782a-758b-44a3-a783-cea5b47d8621"
+ "AUSTRALIAEAST:20180607T141101Z:5d4f3d14-8ffc-4baa-9bb2-ba97d2212d0c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:39:59 GMT"
+ "Thu, 07 Jun 2018 14:11:00 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MjE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6217.azuredatalakestore.net\",\r\n \"accountId\": \"4bf3519c-56f2-494d-a9ac-f7e8ea2a0162\",\r\n \"creationTime\": \"2017-12-07T03:40:05.1545286Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:05.1545286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f76efbb5-60c9-40ce-bd64-c5adee42f456\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217\",\r\n \"name\": \"ps6217\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7484.azuredatalakestore.net\",\r\n \"accountId\": \"1de1778a-8bef-4f83-ac58-6907bd87ca44\",\r\n \"creationTime\": \"2018-06-07T14:11:06.8248547Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:06.8248547Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9c09f863-a7be-4b50-a556-6dfeb4eda7a5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484\",\r\n \"name\": \"ps7484\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -3399,31 +3349,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f7b235d4-359a-447d-99ab-0cd6fcf8494a"
+ "0c6a4bd7-4ac2-4de1-8f7f-290845d76ab9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14987"
],
"x-ms-correlation-request-id": [
- "2403a68b-07da-4ab8-811c-069b74cffc29"
+ "aafcb6cf-fac0-4fdc-bc12-7b4bd4e9c5ac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034043Z:2403a68b-07da-4ab8-811c-069b74cffc29"
+ "AUSTRALIAEAST:20180607T141141Z:aafcb6cf-fac0-4fdc-bc12-7b4bd4e9c5ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:42 GMT"
+ "Thu, 07 Jun 2018 14:11:40 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3438,28 +3385,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MjE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "46b3db9b-e5c6-4906-9e07-9d02a6e4d742"
+ "69c02cc2-6e61-43bc-8b74-354b497b49fe"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6217.azuredatalakestore.net\",\r\n \"accountId\": \"4bf3519c-56f2-494d-a9ac-f7e8ea2a0162\",\r\n \"creationTime\": \"2017-12-07T03:40:05.1545286Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:40:05.1545286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f76efbb5-60c9-40ce-bd64-c5adee42f456\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217\",\r\n \"name\": \"ps6217\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7484.azuredatalakestore.net\",\r\n \"accountId\": \"1de1778a-8bef-4f83-ac58-6907bd87ca44\",\r\n \"creationTime\": \"2018-06-07T14:11:06.8248547Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:11:06.8248547Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9c09f863-a7be-4b50-a556-6dfeb4eda7a5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484\",\r\n \"name\": \"ps7484\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -3471,31 +3418,28 @@
"no-cache"
],
"x-ms-request-id": [
- "00c59b42-c7aa-46fe-93c0-a1c3910cc1e2"
+ "56a51a7b-ce30-46fb-aff2-140a3c2d3c1b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14976"
],
"x-ms-correlation-request-id": [
- "dc44d1c1-9cc6-461c-8bc4-48878c7adb79"
+ "442df3fc-a08b-46b0-8da3-415e4f964d0a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034210Z:dc44d1c1-9cc6-461c-8bc4-48878c7adb79"
+ "AUSTRALIAEAST:20180607T141334Z:442df3fc-a08b-46b0-8da3-415e4f964d0a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:42:09 GMT"
+ "Thu, 07 Jun 2018 14:13:34 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3510,34 +3454,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MjE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "cf48a666-bc1c-4bb8-9607-93bc67f33abe"
+ "721a27fd-50f6-44c5-ba57-6288d6fb0661"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4bf3519c-56f2-494d-a9ac-f7e8ea2a0162\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217\",\r\n \"name\": \"ps6217\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"1de1778a-8bef-4f83-ac58-6907bd87ca44\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484\",\r\n \"name\": \"ps7484\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -3552,37 +3496,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4bf3519c-56f2-494d-a9ac-f7e8ea2a01620?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1de1778a-8bef-4f83-ac58-6907bd87ca440?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "115a4f05-e9c2-4360-9460-b38fd42f7bfd"
+ "d6db52f8-771b-49ee-95ce-47db56b6cded"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1196"
],
"x-ms-correlation-request-id": [
- "c8fd6434-d402-40f2-95e3-c145571e63d6"
+ "738e4102-ade5-44dd-a333-c31046a2b1dd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034004Z:c8fd6434-d402-40f2-95e3-c145571e63d6"
+ "AUSTRALIAEAST:20180607T141105Z:738e4102-ade5-44dd-a333-c31046a2b1dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:04 GMT"
+ "Thu, 07 Jun 2018 14:11:05 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3597,13 +3538,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4bf3519c-56f2-494d-a9ac-f7e8ea2a01620?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRiZjM1MTljLTU2ZjItNDk0ZC1hOWFjLWY3ZThlYTJhMDE2MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1de1778a-8bef-4f83-ac58-6907bd87ca440?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzFkZTE3NzhhLThiZWYtNGY4My1hYzU4LTY5MDdiZDg3Y2E0NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3624,31 +3565,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2d1fba1d-8355-4fef-8c13-fdc07551b241"
+ "0015146d-77fc-4300-8da7-5fc8823a776c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14990"
],
"x-ms-correlation-request-id": [
- "6a4ac468-24d9-46bc-a291-58634ce2bd68"
+ "20b162f2-dfdd-4898-8816-8f75461e8718"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034017Z:6a4ac468-24d9-46bc-a291-58634ce2bd68"
+ "AUSTRALIAEAST:20180607T141117Z:20b162f2-dfdd-4898-8816-8f75461e8718"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:17 GMT"
+ "Thu, 07 Jun 2018 14:11:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3663,13 +3601,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4bf3519c-56f2-494d-a9ac-f7e8ea2a01620?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRiZjM1MTljLTU2ZjItNDk0ZC1hOWFjLWY3ZThlYTJhMDE2MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1de1778a-8bef-4f83-ac58-6907bd87ca440?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzFkZTE3NzhhLThiZWYtNGY4My1hYzU4LTY5MDdiZDg3Y2E0NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3690,31 +3628,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f6c53dd1-ccde-4d4b-9627-4f3b68587ac4"
+ "48d9fcae-f2cb-4da7-8df8-e274e32dc111"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14989"
],
"x-ms-correlation-request-id": [
- "3a6f811b-27c5-41b4-a203-4f7c3ca32bc2"
+ "b03c403e-28e5-4eac-9fa8-b7069220786c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034028Z:3a6f811b-27c5-41b4-a203-4f7c3ca32bc2"
+ "AUSTRALIAEAST:20180607T141128Z:b03c403e-28e5-4eac-9fa8-b7069220786c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:28 GMT"
+ "Thu, 07 Jun 2018 14:11:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3729,13 +3664,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4bf3519c-56f2-494d-a9ac-f7e8ea2a01620?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRiZjM1MTljLTU2ZjItNDk0ZC1hOWFjLWY3ZThlYTJhMDE2MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1de1778a-8bef-4f83-ac58-6907bd87ca440?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzFkZTE3NzhhLThiZWYtNGY4My1hYzU4LTY5MDdiZDg3Y2E0NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -3756,31 +3691,28 @@
"no-cache"
],
"x-ms-request-id": [
- "25510675-25cf-4a06-9a3b-4861cdf81bd8"
+ "379f3f15-6385-47d1-aa7d-69cf3ece50a7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14988"
],
"x-ms-correlation-request-id": [
- "183cc512-1d06-4ed1-99a5-6eb5c0ff4030"
+ "3f07d6ce-e629-4d85-9bdb-cd2943a0c7d6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034039Z:183cc512-1d06-4ed1-99a5-6eb5c0ff4030"
+ "AUSTRALIAEAST:20180607T141140Z:3f07d6ce-e629-4d85-9bdb-cd2943a0c7d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:38 GMT"
+ "Thu, 07 Jun 2018 14:11:39 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3795,10 +3727,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps908\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps9362\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3807,19 +3739,19 @@
"198"
],
"x-ms-client-request-id": [
- "0c19ba47-6065-4746-ae90-ee24442e6f74"
+ "21269ae9-8d22-498b-a0ea-e48d90675d70"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"487"
@@ -3837,10 +3769,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6d1b8149-554c-4408-9861-99fc6c5770e00?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/469ce38b-f7d8-4f6c-83a2-9c207c5105ee0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "66281ce4-7a39-42c1-99a5-87684a055651"
+ "fb92bb38-e7d6-4500-a6ad-0c091b6b7e81"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3849,25 +3781,22 @@
"1198"
],
"x-ms-correlation-request-id": [
- "c2958b37-0d0e-41d9-812f-e5934be4eb05"
+ "a356a068-f85b-4646-9f6e-6d09166abd8c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034046Z:c2958b37-0d0e-41d9-812f-e5934be4eb05"
+ "AUSTRALIAEAST:20180607T141147Z:a356a068-f85b-4646-9f6e-6d09166abd8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:46 GMT"
+ "Thu, 07 Jun 2018 14:11:47 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3882,16 +3811,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6d1b8149-554c-4408-9861-99fc6c5770e00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82ZDFiODE0OS01NTRjLTQ0MDgtOTg2MS05OWZjNmM1NzcwZTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/469ce38b-f7d8-4f6c-83a2-9c207c5105ee0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80NjljZTM4Yi1mN2Q4LTRmNmMtODNhMi05YzIwN2M1MTA1ZWUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -3909,31 +3838,28 @@
"no-cache"
],
"x-ms-request-id": [
- "429a784d-708c-4b46-982b-a1368e5e39b1"
+ "f78dac01-bcf3-472f-9566-f42dc4895559"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14985"
],
"x-ms-correlation-request-id": [
- "faa88b94-5968-4b0c-b5f9-20449bf745b1"
+ "d82dedd1-1f32-4b25-ab0d-da5e88eedff0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034056Z:faa88b94-5968-4b0c-b5f9-20449bf745b1"
+ "AUSTRALIAEAST:20180607T141158Z:d82dedd1-1f32-4b25-ab0d-da5e88eedff0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:40:56 GMT"
+ "Thu, 07 Jun 2018 14:11:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3948,16 +3874,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6d1b8149-554c-4408-9861-99fc6c5770e00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82ZDFiODE0OS01NTRjLTQ0MDgtOTg2MS05OWZjNmM1NzcwZTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/469ce38b-f7d8-4f6c-83a2-9c207c5105ee0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80NjljZTM4Yi1mN2Q4LTRmNmMtODNhMi05YzIwN2M1MTA1ZWUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -3975,31 +3901,28 @@
"no-cache"
],
"x-ms-request-id": [
- "04a50554-d589-4fe2-9f03-02967d0ae506"
+ "89f92c9f-cb27-44b3-adfe-6c2dd1b6bd68"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14983"
],
"x-ms-correlation-request-id": [
- "0c10e000-7970-451f-9b5e-bb36db157442"
+ "78cfc7df-38a3-47d8-b32f-01bb3a16238b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034107Z:0c10e000-7970-451f-9b5e-bb36db157442"
+ "AUSTRALIAEAST:20180607T141210Z:78cfc7df-38a3-47d8-b32f-01bb3a16238b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:07 GMT"
+ "Thu, 07 Jun 2018 14:12:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4014,16 +3937,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/6d1b8149-554c-4408-9861-99fc6c5770e00?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy82ZDFiODE0OS01NTRjLTQ0MDgtOTg2MS05OWZjNmM1NzcwZTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/469ce38b-f7d8-4f6c-83a2-9c207c5105ee0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy80NjljZTM4Yi1mN2Q4LTRmNmMtODNhMi05YzIwN2M1MTA1ZWUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -4041,31 +3964,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fd91c73f-e0c6-495d-8209-ea5db71484a9"
+ "d270e212-99e2-45cf-9c6e-58c616afa5d5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14982"
],
"x-ms-correlation-request-id": [
- "f626dbee-bdb4-40f1-8927-cc1817b39769"
+ "050c9da2-4d29-4b43-9dc5-dd4bce78fca7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034118Z:f626dbee-bdb4-40f1-8927-cc1817b39769"
+ "AUSTRALIAEAST:20180607T141221Z:050c9da2-4d29-4b43-9dc5-dd4bce78fca7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:18 GMT"
+ "Thu, 07 Jun 2018 14:12:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4080,8 +4000,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\"\r\n }\r\n}",
"RequestHeaders": {
@@ -4092,22 +4012,22 @@
"109"
],
"x-ms-client-request-id": [
- "20e16576-8909-4dd6-a5a1-3b0584f52378"
+ "53dcc022-d13d-46da-bfa2-88f0d4410175"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps908\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps908\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9362\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9362\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "967"
+ "990"
],
"Content-Type": [
"application/json"
@@ -4119,31 +4039,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c9d4db9b-744d-4c6a-a680-8ffbb151273f"
+ "05622730-57e2-4cf0-a50c-57004259b191"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "f0f36eb7-0c66-4e67-8acf-f22c0be7e99d"
+ "1d2179f4-2390-492b-9f11-55394292681c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034125Z:f0f36eb7-0c66-4e67-8acf-f22c0be7e99d"
+ "AUSTRALIAEAST:20180607T141234Z:1d2179f4-2390-492b-9f11-55394292681c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:25 GMT"
+ "Thu, 07 Jun 2018 14:12:34 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4158,28 +4075,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3cd6befc-640b-4d53-96ab-b446b5653f69"
+ "748eedbe-cd46-4113-aab3-a733d3c121ec"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5061.azuredatalakeanalytics.net\",\r\n \"accountId\": \"6d1b8149-554c-4408-9861-99fc6c5770e0\",\r\n \"creationTime\": \"2017-12-07T03:40:48.3397981Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:41:24.685616Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061\",\r\n \"name\": \"ps5061\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2135.azuredatalakeanalytics.net\",\r\n \"accountId\": \"469ce38b-f7d8-4f6c-83a2-9c207c5105ee\",\r\n \"creationTime\": \"2018-06-07T14:11:48.166175Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:12:33.4236597Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135\",\r\n \"name\": \"ps2135\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "522"
+ "520"
],
"Content-Type": [
"application/json"
@@ -4191,31 +4108,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f9d9b3b3-b6ee-404f-84b0-be56a84272ad"
+ "7c8520ce-79f3-475a-a2b5-3ca24080ab23"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14974"
],
"x-ms-correlation-request-id": [
- "910993a9-397e-4428-9c23-981460bc1603"
+ "c17aa507-321e-42d4-991c-3abe636f0e59"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034126Z:910993a9-397e-4428-9c23-981460bc1603"
+ "AUSTRALIAEAST:20180607T141236Z:c17aa507-321e-42d4-991c-3abe636f0e59"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:26 GMT"
+ "Thu, 07 Jun 2018 14:12:36 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4230,25 +4144,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/DataLakeStoreAccounts/ps6217?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9EYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM2MjE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts/ps7484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9kYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM3NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd8a3ad2-74c9-4d63-8c25-48a9165673e4"
+ "58c1e90b-9835-4b10-965b-dd16248a02f4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/dataLakeStoreAccounts/ps6217\",\r\n \"name\": \"ps6217\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts/ps7484\",\r\n \"name\": \"ps7484\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"298"
@@ -4263,31 +4177,28 @@
"no-cache"
],
"x-ms-request-id": [
- "12722ee2-0e31-4541-9592-8c7071071814"
+ "da0adc08-9276-4992-9089-be188cec3e05"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "4fd34e6b-c690-4885-bf3b-95da4c8e6722"
+ "7cd38cdb-85d4-4135-899b-092bbeebf607"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034129Z:4fd34e6b-c690-4885-bf3b-95da4c8e6722"
+ "AUSTRALIAEAST:20180607T141240Z:7cd38cdb-85d4-4135-899b-092bbeebf607"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:28 GMT"
+ "Thu, 07 Jun 2018 14:12:40 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4302,25 +4213,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/DataLakeStoreAccounts/ps6217?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9EYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM2MjE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts/ps7484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9kYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM3NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "860e4aae-df10-4303-a6bd-01997dd2bca1"
+ "0c972fc4-5115-40c4-b455-04752b991762"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/dataLakeStoreAccounts/ps6217\",\r\n \"name\": \"ps6217\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts/ps7484\",\r\n \"name\": \"ps7484\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"298"
@@ -4335,31 +4246,28 @@
"no-cache"
],
"x-ms-request-id": [
- "69ebc8f4-02a1-41c1-bf8b-b8fd7d355ff6"
+ "2744d089-f031-45c0-a3c1-f661046bcc9a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14968"
],
"x-ms-correlation-request-id": [
- "305cddbd-121f-4ca4-9bb2-c3dd0d67c816"
+ "c9441dc7-32b7-43af-9e16-258e146daebb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034132Z:305cddbd-121f-4ca4-9bb2-c3dd0d67c816"
+ "AUSTRALIAEAST:20180607T141246Z:c9441dc7-32b7-43af-9e16-258e146daebb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:31 GMT"
+ "Thu, 07 Jun 2018 14:12:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4374,28 +4282,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/DataLakeStoreAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9EYXRhTGFrZVN0b3JlQWNjb3VudHMvP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9kYXRhTGFrZVN0b3JlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbb4a178-70fb-486f-b05e-613a89fc6bb7"
+ "780ac0a5-a283-487d-b57a-e9e5b1c49e11"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/dataLakeStoreAccounts/ps6217\",\r\n \"name\": \"ps6217\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/dataLakeStoreAccounts/ps908\",\r\n \"name\": \"ps908\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts/ps7484\",\r\n \"name\": \"ps7484\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts/ps9362\",\r\n \"name\": \"ps9362\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "607"
+ "609"
],
"Content-Type": [
"application/json"
@@ -4407,31 +4315,28 @@
"no-cache"
],
"x-ms-request-id": [
- "256ac80f-eda8-42f9-8dac-b066ef2c592d"
+ "3d4e7365-eb8d-462a-b408-da374def7d8a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14965"
],
"x-ms-correlation-request-id": [
- "c151b42f-d4e4-4048-8e63-429cb2146259"
+ "215b9685-2e47-4932-bee3-e5cc17aa18d3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034134Z:c151b42f-d4e4-4048-8e63-429cb2146259"
+ "AUSTRALIAEAST:20180607T141250Z:215b9685-2e47-4932-bee3-e5cc17aa18d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:33 GMT"
+ "Thu, 07 Jun 2018 14:12:49 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4446,28 +4351,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/DataLakeStoreAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9EYXRhTGFrZVN0b3JlQWNjb3VudHMvP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9kYXRhTGFrZVN0b3JlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "651020d9-5c55-4a3b-9e4e-21bde4f9d105"
+ "79fc613b-565e-413d-be8c-cf52b225277d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/dataLakeStoreAccounts/ps908\",\r\n \"name\": \"ps908\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts/ps9362\",\r\n \"name\": \"ps9362\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "308"
+ "310"
],
"Content-Type": [
"application/json"
@@ -4479,31 +4384,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f1506ca1-77b0-447a-ab7d-a50b7319f441"
+ "4ecfadb9-11bd-4a03-ad1e-e843e5d04303"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14953"
],
"x-ms-correlation-request-id": [
- "8849ab9e-3411-4ae6-b999-cf3d785d1843"
+ "0201ba8f-5b6b-4d83-8771-34ee70b7984c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034145Z:8849ab9e-3411-4ae6-b999-cf3d785d1843"
+ "AUSTRALIAEAST:20180607T141311Z:0201ba8f-5b6b-4d83-8771-34ee70b7984c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:44 GMT"
+ "Thu, 07 Jun 2018 14:13:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4518,22 +4420,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/StorageAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9TdG9yYWdlQWNjb3VudHMvP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/storageAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1189659d-22bb-4b86-9690-fd3c423e4c7e"
+ "be1551cc-32e8-4834-9be1-efaa3a11cc43"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -4551,31 +4453,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2dddefb9-fe06-492d-b15a-752a0be16602"
+ "ed7b37a4-f16b-47ce-8b8b-23a0ff52a2cf"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14964"
],
"x-ms-correlation-request-id": [
- "dd25da4c-3803-497a-b1e0-8d014b62bcd2"
+ "6e0f670c-8f7c-4f89-984f-45d118bba6a3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034134Z:dd25da4c-3803-497a-b1e0-8d014b62bcd2"
+ "AUSTRALIAEAST:20180607T141251Z:6e0f670c-8f7c-4f89-984f-45d118bba6a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:34 GMT"
+ "Thu, 07 Jun 2018 14:12:51 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4590,25 +4489,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/StorageAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9TdG9yYWdlQWNjb3VudHMvP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/storageAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f1d28c7-ad1b-4b7e-9ead-067f8afbcbd1"
+ "00d8480f-304e-40ff-8384-039401060824"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/storageAccounts/azureblob019621\",\r\n \"name\": \"azureblob019621\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/storageAccounts/azureblob016186\",\r\n \"name\": \"azureblob016186\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"310"
@@ -4623,31 +4522,28 @@
"no-cache"
],
"x-ms-request-id": [
- "af7d10d7-41b9-4a1a-bbbc-9c005d0713bb"
+ "92d7b94f-d4ec-4f91-894b-e68f5d2181d8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14952"
],
"x-ms-correlation-request-id": [
- "f169f2f8-3d68-432f-b65c-04dad64e41d4"
+ "67e63e93-ddba-4087-aef4-80a05538ba04"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034145Z:f169f2f8-3d68-432f-b65c-04dad64e41d4"
+ "AUSTRALIAEAST:20180607T141312Z:67e63e93-ddba-4087-aef4-80a05538ba04"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:44 GMT"
+ "Thu, 07 Jun 2018 14:13:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4662,22 +4558,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/DataLakeStoreAccounts/ps6217?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9EYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM2MjE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/dataLakeStoreAccounts/ps7484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9kYXRhTGFrZVN0b3JlQWNjb3VudHMvcHM3NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b95fa4ce-7de5-4b59-bf45-14c2f67dd969"
+ "37c41f6d-e915-4ffe-b232-11afa8491e5e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -4692,28 +4588,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9af31946-8fc3-4a85-b350-c161d7858b26"
+ "a163282f-3332-45a9-9192-5cf896f17dc8"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "645ddfa3-8547-4133-b316-459bd9b6a962"
+ "0f4fb8e5-8f04-4e02-b643-f1eb1ceacbeb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034136Z:645ddfa3-8547-4133-b316-459bd9b6a962"
+ "AUSTRALIAEAST:20180607T141254Z:0f4fb8e5-8f04-4e02-b643-f1eb1ceacbeb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:35 GMT"
+ "Thu, 07 Jun 2018 14:12:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4728,10 +4624,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/StorageAccounts/azureblob019621?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9TdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE5NjIxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/storageAccounts/azureblob016186?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9zdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE2MTg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"/0PAuV8805uSlltTsqsUtuJGctA+Nd+0WaQxF3yLCvLSS5q/TiXRO/sPVnMDHM5pivTK2po3PtBZ4Grqst+giA==\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"g00bWHM0yyRDKxymgC1vqzWKKx7J6v+0vEd26BjcUUQpk3vyw91lFV91tIv7/Kdz5QniuRsbPQT+q6HIsI0B0w==\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -4740,19 +4636,19 @@
"137"
],
"x-ms-client-request-id": [
- "fbe8b122-12be-4967-8ef4-8b524dbfea20"
+ "5b7f581b-75ef-4d88-9bb4-c6e06c02d2a5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/storageAccounts/azureblob019621\",\r\n \"name\": \"azureblob019621\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/storageAccounts/azureblob016186\",\r\n \"name\": \"azureblob016186\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"298"
@@ -4767,31 +4663,28 @@
"no-cache"
],
"x-ms-request-id": [
- "533e78cf-d8b2-4ba9-bb43-e0ee0baec9cb"
+ "11ee2b57-48d2-41ed-bacc-34841a58e4b1"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-correlation-request-id": [
- "5c96c603-4801-4fad-9d5f-0d2b53fc0942"
+ "ff882c18-552d-4209-8cb9-1b4e93944c12"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034140Z:5c96c603-4801-4fad-9d5f-0d2b53fc0942"
+ "AUSTRALIAEAST:20180607T141301Z:ff882c18-552d-4209-8cb9-1b4e93944c12"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:39 GMT"
+ "Thu, 07 Jun 2018 14:13:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4806,25 +4699,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/StorageAccounts/azureblob019621?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9TdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE5NjIxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/storageAccounts/azureblob016186?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9zdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE2MTg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06a28ad0-145e-4660-be37-c6854e102a84"
+ "1cfee275-5cae-4c28-b508-1a5a95bdcebf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/storageAccounts/azureblob019621\",\r\n \"name\": \"azureblob019621\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/storageAccounts/azureblob016186\",\r\n \"name\": \"azureblob016186\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"298"
@@ -4839,31 +4732,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0627a781-5b20-4896-9e0c-1a6e8ea20b6c"
+ "cc093b01-112f-4993-8326-ee11feab0638"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14956"
],
"x-ms-correlation-request-id": [
- "c8661c26-ba00-42db-9846-da1e75e0925d"
+ "c22d4384-24f1-4ea8-903e-b71289ad0c8b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034143Z:c8661c26-ba00-42db-9846-da1e75e0925d"
+ "AUSTRALIAEAST:20180607T141307Z:c22d4384-24f1-4ea8-903e-b71289ad0c8b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:42 GMT"
+ "Thu, 07 Jun 2018 14:13:06 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4878,22 +4768,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061/StorageAccounts/azureblob019621?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MS9TdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE5NjIxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135/storageAccounts/azureblob016186?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNS9zdG9yYWdlQWNjb3VudHMvYXp1cmVibG9iMDE2MTg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29d32e69-509f-4ba0-a0cd-41d1369450b6"
+ "7e0a9518-fad4-4f09-9bb2-9905f4c7ae17"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -4908,28 +4798,28 @@
"no-cache"
],
"x-ms-request-id": [
- "50b605c9-e2f7-4adf-b5e8-477d91e63f02"
+ "b79374ef-ea3b-46e6-8dda-bf90d3322afd"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "eb037e30-4781-4930-9a60-c3bd4a4d96c3"
+ "2e162fb1-724d-4b4c-9524-8e74d418e5f9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034147Z:eb037e30-4781-4930-9a60-c3bd4a4d96c3"
+ "AUSTRALIAEAST:20180607T141315Z:2e162fb1-724d-4b4c-9524-8e74d418e5f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:46 GMT"
+ "Thu, 07 Jun 2018 14:13:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -4944,22 +4834,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeAnalytics/accounts/ps5061?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTA2MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeAnalytics/accounts/ps2135?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjEzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e87213ff-6e09-4f81-8600-0cd7bf2c6ee5"
+ "c360fa74-a4d4-401d-a9dc-7fa586f957e1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -4974,28 +4864,28 @@
"no-cache"
],
"x-ms-request-id": [
- "3c2d1208-00e0-4587-bd07-b72d2e5d67ed"
+ "49381292-331b-4786-9800-2ca8bf515ed0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "48c61637-e7c1-434f-a3a9-77a2ca25002c"
+ "63b80d03-36c7-4e48-8313-b70f329116c1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034153Z:48c61637-e7c1-434f-a3a9-77a2ca25002c"
+ "AUSTRALIAEAST:20180607T141325Z:63b80d03-36c7-4e48-8313-b70f329116c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:53 GMT"
+ "Thu, 07 Jun 2018 14:13:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -5010,19 +4900,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps9362?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MzYyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e587d477-4071-4a86-b523-5a4e3a979453"
+ "d489ab78-7568-4887-a9f8-191f5896babd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -5039,38 +4929,29 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ec081ff3-2c0a-4602-8f77-467e8b82b9a51?api-version=2016-11-01&expanded=true"
- ],
"x-ms-request-id": [
- "2c206b6b-92e1-440a-bf06-5cecda3403c4"
+ "2b4bf3db-8901-4437-b92d-3bc9fef8662a"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "70f308a1-3a6d-4103-a8b9-827ee6ef63ad"
+ "bbe203ba-92cd-470f-b5a5-54909c9f9f96"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034158Z:70f308a1-3a6d-4103-a8b9-827ee6ef63ad"
+ "AUSTRALIAEAST:20180607T141333Z:bbe203ba-92cd-470f-b5a5-54909c9f9f96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:41:57 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps908/operationresults/1?api-version=2016-11-01"
+ "Thu, 07 Jun 2018 14:13:32 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -5082,28 +4963,31 @@
"ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ec081ff3-2c0a-4602-8f77-467e8b82b9a51?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VjMDgxZmYzLTJjMGEtNDYwMi04Zjc3LTQ2N2U4YjgyYjlhNTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5691feb4-5056-4980-9045-520e560ea00c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -5111,32 +4995,38 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "754ddf07-6ddc-4499-b9f7-2377b9b24687"
+ "Retry-After": [
+ "10"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1de1778a-8bef-4f83-ac58-6907bd87ca441?api-version=2016-11-01&expanded=true"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "x-ms-request-id": [
+ "3e870aa4-37c1-47da-8e3c-c27fae1b7d6a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "abceb79c-2ab2-4239-bb0b-e6715e01da48"
+ "df866a08-6ad9-45ca-9139-f29a4305a69c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034209Z:abceb79c-2ab2-4239-bb0b-e6715e01da48"
+ "AUSTRALIAEAST:20180607T141338Z:df866a08-6ad9-45ca-9139-f29a4305a69c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:42:08 GMT"
+ "Thu, 07 Jun 2018 14:13:37 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484/operationresults/1?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -5148,31 +5038,28 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps3957/providers/Microsoft.DataLakeStore/accounts/ps6217?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMzk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM2MjE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1de1778a-8bef-4f83-ac58-6907bd87ca441?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzFkZTE3NzhhLThiZWYtNGY4My1hYzU4LTY5MDdiZDg3Y2E0NDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "98cfd32b-a337-497a-bcdb-ed97bc8a9c42"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
@@ -5181,28 +5068,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7b7776d7-02e3-42c8-b59c-17a32dbc1ee0"
+ "c01d024a-c50b-4cac-9a8c-6100dba02c6a"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
],
"x-ms-correlation-request-id": [
- "29241cb9-12db-4c54-a033-0943078595a6"
+ "5a0bb91c-373b-4b1e-839d-dc77a8b95e08"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034213Z:29241cb9-12db-4c54-a033-0943078595a6"
+ "AUSTRALIAEAST:20180607T141349Z:5a0bb91c-373b-4b1e-839d-dc77a8b95e08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:42:13 GMT"
+ "Thu, 07 Jun 2018 14:13:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -5217,13 +5104,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps3957?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMzk1Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4806/providers/Microsoft.DataLakeStore/accounts/ps7484/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDgwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDg0L29wZXJhdGlvbnJlc3VsdHMvMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
"ResponseBody": "",
@@ -5237,47 +5127,59 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
"x-ms-request-id": [
- "6943e73c-f8fa-47d5-a5b6-53b75152eaea"
+ "3fa3e4f9-7d85-469f-9ea9-cdebdfea3c2b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
],
"x-ms-correlation-request-id": [
- "6943e73c-f8fa-47d5-a5b6-53b75152eaea"
+ "b205a428-d834-4695-9266-bb949c71ee25"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034215Z:6943e73c-f8fa-47d5-a5b6-53b75152eaea"
+ "AUSTRALIAEAST:20180607T141350Z:b205a428-d834-4695-9266-bb949c71ee25"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:42:14 GMT"
+ "Thu, 07 Jun 2018 14:13:49 GMT"
],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU5UY3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4806?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDgwNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
+ "x-ms-client-request-id": [
+ "db04eee2-4f17-49d8-ab83-89bd726f6920"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5294,44 +5196,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14994"
],
"x-ms-request-id": [
- "3c9ea7ae-5bc1-4cd5-b215-2e431b06f077"
+ "6d748c93-c0d7-4d03-b74f-e77079b42b9b"
],
"x-ms-correlation-request-id": [
- "3c9ea7ae-5bc1-4cd5-b215-2e431b06f077"
+ "6d748c93-c0d7-4d03-b74f-e77079b42b9b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034215Z:3c9ea7ae-5bc1-4cd5-b215-2e431b06f077"
+ "AUSTRALIAEAST:20180607T141354Z:6d748c93-c0d7-4d03-b74f-e77079b42b9b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:42:14 GMT"
+ "Thu, 07 Jun 2018 14:13:53 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU5UY3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1EWXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5349,43 +5254,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14945"
],
"x-ms-request-id": [
- "a067ec63-c63e-4ae0-b63a-79bf4b922aee"
+ "462b99b2-5295-402b-ad37-8412b4dca8d9"
],
"x-ms-correlation-request-id": [
- "a067ec63-c63e-4ae0-b63a-79bf4b922aee"
+ "462b99b2-5295-402b-ad37-8412b4dca8d9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034230Z:a067ec63-c63e-4ae0-b63a-79bf4b922aee"
+ "AUSTRALIAEAST:20180607T141409Z:462b99b2-5295-402b-ad37-8412b4dca8d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:42:30 GMT"
+ "Thu, 07 Jun 2018 14:14:09 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU5UY3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1EWXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5403,43 +5311,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14944"
],
"x-ms-request-id": [
- "cf1ae2d3-3c85-46ec-8e53-d4856e28c8f6"
+ "54791184-12d0-4337-8504-8cf87c88fafc"
],
"x-ms-correlation-request-id": [
- "cf1ae2d3-3c85-46ec-8e53-d4856e28c8f6"
+ "54791184-12d0-4337-8504-8cf87c88fafc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034246Z:cf1ae2d3-3c85-46ec-8e53-d4856e28c8f6"
+ "AUSTRALIAEAST:20180607T141425Z:54791184-12d0-4337-8504-8cf87c88fafc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:42:45 GMT"
+ "Thu, 07 Jun 2018 14:14:25 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU5UY3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1EWXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5454,37 +5365,43 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14943"
],
"x-ms-request-id": [
- "e9593cf8-bd8c-49fc-82a7-d694f89830f2"
+ "9a23a58b-dd97-438f-bbeb-7dccefa5020a"
],
"x-ms-correlation-request-id": [
- "e9593cf8-bd8c-49fc-82a7-d694f89830f2"
+ "9a23a58b-dd97-438f-bbeb-7dccefa5020a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034301Z:e9593cf8-bd8c-49fc-82a7-d694f89830f2"
+ "AUSTRALIAEAST:20180607T141440Z:9a23a58b-dd97-438f-bbeb-7dccefa5020a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:43:00 GMT"
+ "Thu, 07 Jun 2018 14:14:40 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg18399?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTgzOTk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1EWXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -5498,45 +5415,39 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
],
"x-ms-request-id": [
- "55451bcf-6781-4d30-bb97-6d7ef9372f47"
+ "ae754384-e218-45ef-8e4d-81b6fb109c2e"
],
"x-ms-correlation-request-id": [
- "55451bcf-6781-4d30-bb97-6d7ef9372f47"
+ "ae754384-e218-45ef-8e4d-81b6fb109c2e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034302Z:55451bcf-6781-4d30-bb97-6d7ef9372f47"
+ "AUSTRALIAEAST:20180607T141441Z:ae754384-e218-45ef-8e4d-81b6fb109c2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:43:01 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 14:14:40 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTRNems1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/abarg12435?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTI0MzU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
@@ -5555,36 +5466,39 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "6674377f-181d-4be6-81c8-1449a7761888"
+ "c7a97acc-8f1b-49cd-a28c-f80bd83dc32c"
],
"x-ms-correlation-request-id": [
- "6674377f-181d-4be6-81c8-1449a7761888"
+ "c7a97acc-8f1b-49cd-a28c-f80bd83dc32c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034302Z:6674377f-181d-4be6-81c8-1449a7761888"
+ "AUSTRALIAEAST:20180607T141445Z:c7a97acc-8f1b-49cd-a28c-f80bd83dc32c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:43:01 GMT"
+ "Thu, 07 Jun 2018 14:14:44 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTRNems1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXlORE0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5610,35 +5524,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14997"
],
"x-ms-request-id": [
- "f19a7ac9-fcba-42c2-9829-8aa0c32d4830"
+ "1d403989-dcb6-41ba-83f2-9cdb41963ee9"
],
"x-ms-correlation-request-id": [
- "f19a7ac9-fcba-42c2-9829-8aa0c32d4830"
+ "1d403989-dcb6-41ba-83f2-9cdb41963ee9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034318Z:f19a7ac9-fcba-42c2-9829-8aa0c32d4830"
+ "AUSTRALIAEAST:20180607T141446Z:1d403989-dcb6-41ba-83f2-9cdb41963ee9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:43:17 GMT"
+ "Thu, 07 Jun 2018 14:14:45 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTRNems1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXlORE0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5664,35 +5581,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14996"
],
"x-ms-request-id": [
- "acc40c06-30ae-4772-abb8-4f6b257c12c8"
+ "e91bb28c-3723-45cc-8733-64e37fce5a03"
],
"x-ms-correlation-request-id": [
- "acc40c06-30ae-4772-abb8-4f6b257c12c8"
+ "e91bb28c-3723-45cc-8733-64e37fce5a03"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034333Z:acc40c06-30ae-4772-abb8-4f6b257c12c8"
+ "AUSTRALIAEAST:20180607T141502Z:e91bb28c-3723-45cc-8733-64e37fce5a03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:43:32 GMT"
+ "Thu, 07 Jun 2018 14:15:01 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTRNems1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXlORE0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5718,35 +5638,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14995"
],
"x-ms-request-id": [
- "8a41d7be-c950-418e-b192-3793d37bb450"
+ "ac25698a-d4ff-43c1-b1a9-3de0ac1ffa44"
],
"x-ms-correlation-request-id": [
- "8a41d7be-c950-418e-b192-3793d37bb450"
+ "ac25698a-d4ff-43c1-b1a9-3de0ac1ffa44"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034348Z:8a41d7be-c950-418e-b192-3793d37bb450"
+ "AUSTRALIAEAST:20180607T141517Z:ac25698a-d4ff-43c1-b1a9-3de0ac1ffa44"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:43:48 GMT"
+ "Thu, 07 Jun 2018 14:15:17 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTRNems1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXlORE0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5772,35 +5695,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14994"
],
"x-ms-request-id": [
- "2c374b19-55d7-4272-9031-c8a49092f452"
+ "4d19180b-efa5-4639-a3bc-dc9667d2d9f1"
],
"x-ms-correlation-request-id": [
- "2c374b19-55d7-4272-9031-c8a49092f452"
+ "4d19180b-efa5-4639-a3bc-dc9667d2d9f1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034403Z:2c374b19-55d7-4272-9031-c8a49092f452"
+ "AUSTRALIAEAST:20180607T141533Z:4d19180b-efa5-4639-a3bc-dc9667d2d9f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:44:03 GMT"
+ "Thu, 07 Jun 2018 14:15:32 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTRNems1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXlORE0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5826,35 +5752,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14993"
],
"x-ms-request-id": [
- "7a622104-00e9-4bb6-af05-2e2d80ced99d"
+ "cefcbc6a-2483-4ef2-b38e-a1d7cd8eed4d"
],
"x-ms-correlation-request-id": [
- "7a622104-00e9-4bb6-af05-2e2d80ced99d"
+ "cefcbc6a-2483-4ef2-b38e-a1d7cd8eed4d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034419Z:7a622104-00e9-4bb6-af05-2e2d80ced99d"
+ "AUSTRALIAEAST:20180607T141549Z:cefcbc6a-2483-4ef2-b38e-a1d7cd8eed4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:44:19 GMT"
+ "Thu, 07 Jun 2018 14:15:48 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTRNems1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXlORE0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5880,35 +5809,38 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14992"
],
"x-ms-request-id": [
- "899d3c79-13c3-4923-8e8c-f4cfac7a637f"
+ "ca6135d2-24a2-43cb-a2ca-5ce5c519fd90"
],
"x-ms-correlation-request-id": [
- "899d3c79-13c3-4923-8e8c-f4cfac7a637f"
+ "ca6135d2-24a2-43cb-a2ca-5ce5c519fd90"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034434Z:899d3c79-13c3-4923-8e8c-f4cfac7a637f"
+ "AUSTRALIAEAST:20180607T141604Z:ca6135d2-24a2-43cb-a2ca-5ce5c519fd90"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:44:34 GMT"
+ "Thu, 07 Jun 2018 14:16:04 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzE4Mzk5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RTRNems1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzEyNDM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXlORE0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -5931,25 +5863,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14991"
],
"x-ms-request-id": [
- "5021a1da-7828-4459-868e-3958ea5da79f"
+ "836c6f76-a696-4296-8cdd-f39395daebc8"
],
"x-ms-correlation-request-id": [
- "5021a1da-7828-4459-868e-3958ea5da79f"
+ "836c6f76-a696-4296-8cdd-f39395daebc8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034449Z:5021a1da-7828-4459-868e-3958ea5da79f"
+ "AUSTRALIAEAST:20180607T141620Z:836c6f76-a696-4296-8cdd-f39395daebc8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:44:49 GMT"
+ "Thu, 07 Jun 2018 14:16:19 GMT"
]
},
"StatusCode": 200
@@ -5957,14 +5892,14 @@
],
"Names": {
"RunPsTestWorkflow": [
- "abarg18399",
- "azureblob019621"
+ "abarg12435",
+ "azureblob016186"
],
"": [
- "ps3957",
- "ps5061",
- "ps908",
- "ps6217"
+ "ps4806",
+ "ps2135",
+ "ps9362",
+ "ps7484"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaAccountTiers.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaAccountTiers.json
index 07a78b1be304..563ce6860a72 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaAccountTiers.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaAccountTiers.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-request-id": [
- "9baaadfc-d055-4940-8d8d-070dec0085f7"
+ "a3cd17fe-84d9-4ef4-b83f-815b48c4a56d"
],
"x-ms-correlation-request-id": [
- "9baaadfc-d055-4940-8d8d-070dec0085f7"
+ "a3cd17fe-84d9-4ef4-b83f-815b48c4a56d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034921Z:9baaadfc-d055-4940-8d8d-070dec0085f7"
+ "AUSTRALIAEAST:20180607T142148Z:a3cd17fe-84d9-4ef4-b83f-815b48c4a56d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:21 GMT"
+ "Thu, 07 Jun 2018 14:21:47 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14991"
],
"x-ms-request-id": [
- "a8f49730-c263-4a38-a7b9-c6322cbf01be"
+ "fff74ae0-8f3c-4753-ad38-5a54860f6f50"
],
"x-ms-correlation-request-id": [
- "a8f49730-c263-4a38-a7b9-c6322cbf01be"
+ "fff74ae0-8f3c-4753-ad38-5a54860f6f50"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034921Z:a8f49730-c263-4a38-a7b9-c6322cbf01be"
+ "AUSTRALIAEAST:20180607T142148Z:fff74ae0-8f3c-4753-ad38-5a54860f6f50"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:21 GMT"
+ "Thu, 07 Jun 2018 14:21:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9309?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTMwOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1554?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMTU1ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "0d586ef8-735c-4138-b163-c0ba6237181b"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309\",\r\n \"name\": \"ps9309\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554\",\r\n \"name\": \"ps1554\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,49 +142,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1198"
],
"x-ms-request-id": [
- "4821493a-7690-498e-9768-3013b92ae0b3"
+ "ff176cbb-69e5-4604-85d6-69251e3dfeb1"
],
"x-ms-correlation-request-id": [
- "4821493a-7690-498e-9768-3013b92ae0b3"
+ "ff176cbb-69e5-4604-85d6-69251e3dfeb1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034928Z:4821493a-7690-498e-9768-3013b92ae0b3"
+ "AUSTRALIAEAST:20180607T142157Z:ff176cbb-69e5-4604-85d6-69251e3dfeb1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:28 GMT"
+ "Thu, 07 Jun 2018 14:21:57 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3464903e-656a-4200-9f49-5a5534d562e4"
+ "cecd9af0-6359-4d47-811d-ff433d5706b7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9172' under resource group 'ps9309' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps3074' under resource group 'ps1554' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -187,46 +205,49 @@
"gateway"
],
"x-ms-request-id": [
- "6951d8c8-08e6-4c7e-90e9-912653068d92"
+ "41e046ee-b8fa-4821-8f92-3ce01a63e29e"
],
"x-ms-correlation-request-id": [
- "6951d8c8-08e6-4c7e-90e9-912653068d92"
+ "41e046ee-b8fa-4821-8f92-3ce01a63e29e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034929Z:6951d8c8-08e6-4c7e-90e9-912653068d92"
+ "AUSTRALIAEAST:20180607T142159Z:41e046ee-b8fa-4821-8f92-3ce01a63e29e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:28 GMT"
+ "Thu, 07 Jun 2018 14:21:59 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3a78fce-b63b-42f8-acf6-f4dd5bbf6c87"
+ "306b0b3a-65bc-499b-b18f-18d74fb86a97"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9172' under resource group 'ps9309' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps3074' under resource group 'ps1554' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -244,46 +265,49 @@
"gateway"
],
"x-ms-request-id": [
- "8263dabf-8771-4d3d-bc16-5f3b3a2bc573"
+ "9d930aff-b7fd-4c4c-99ef-a4f015e6c72f"
],
"x-ms-correlation-request-id": [
- "8263dabf-8771-4d3d-bc16-5f3b3a2bc573"
+ "9d930aff-b7fd-4c4c-99ef-a4f015e6c72f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035007Z:8263dabf-8771-4d3d-bc16-5f3b3a2bc573"
+ "AUSTRALIAEAST:20180607T142244Z:9d930aff-b7fd-4c4c-99ef-a4f015e6c72f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:07 GMT"
+ "Thu, 07 Jun 2018 14:22:44 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66ab11f2-0fe1-4883-b99c-f444b7ce2635"
+ "8b2c02dc-055b-456e-8dc0-50f3ce2e942d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9172' under resource group 'ps9309' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps3074' under resource group 'ps1554' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -301,43 +325,46 @@
"gateway"
],
"x-ms-request-id": [
- "56c5806e-3b5c-4614-b976-8337553a6236"
+ "d1210504-3686-43ef-bc9a-326fd8906c97"
],
"x-ms-correlation-request-id": [
- "56c5806e-3b5c-4614-b976-8337553a6236"
+ "d1210504-3686-43ef-bc9a-326fd8906c97"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035008Z:56c5806e-3b5c-4614-b976-8337553a6236"
+ "AUSTRALIAEAST:20180607T142245Z:d1210504-3686-43ef-bc9a-326fd8906c97"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:07 GMT"
+ "Thu, 07 Jun 2018 14:22:45 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9172.azuredatalakeanalytics.net\",\r\n \"accountId\": \"9841c631-178d-49d6-a90e-32893a023c4a\",\r\n \"creationTime\": \"2017-12-07T03:50:11.6771722Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:50:11.6771722Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172\",\r\n \"name\": \"ps9172\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3074.azuredatalakeanalytics.net\",\r\n \"accountId\": \"afb4f677-2397-4927-bf21-4e0d03e7ad7c\",\r\n \"creationTime\": \"2018-06-07T14:22:49.7082886Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:22:49.7082886Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074\",\r\n \"name\": \"ps3074\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -349,31 +376,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c7cd5f8c-484f-42b2-a0f8-c54bb3595fc5"
+ "9fca8e68-6276-4e13-bc5b-0423e6d996cc"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14984"
],
"x-ms-correlation-request-id": [
- "21311304-1fab-48a1-a5bc-63eef9661ee2"
+ "bece132d-ef36-493a-94f0-03b4a17f37b8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035042Z:21311304-1fab-48a1-a5bc-63eef9661ee2"
+ "AUSTRALIAEAST:20180607T142323Z:bece132d-ef36-493a-94f0-03b4a17f37b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:42 GMT"
+ "Thu, 07 Jun 2018 14:23:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -388,28 +412,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02a1da29-564c-43f7-8fc9-d416ea13ef02"
+ "e8dd2e82-561c-4c2b-b0d6-05336614ea58"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9172.azuredatalakeanalytics.net\",\r\n \"accountId\": \"9841c631-178d-49d6-a90e-32893a023c4a\",\r\n \"creationTime\": \"2017-12-07T03:50:11.6771722Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:50:11.6771722Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172\",\r\n \"name\": \"ps9172\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3074.azuredatalakeanalytics.net\",\r\n \"accountId\": \"afb4f677-2397-4927-bf21-4e0d03e7ad7c\",\r\n \"creationTime\": \"2018-06-07T14:22:49.7082886Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:22:49.7082886Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074\",\r\n \"name\": \"ps3074\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -421,31 +445,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a118af88-3d94-4b2b-8773-fc10547b0cf5"
+ "39d9cbbb-8500-4be1-974b-f5a3021d09d9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14983"
],
"x-ms-correlation-request-id": [
- "a97cf25a-de38-4186-a71d-8dc466a2e009"
+ "9f7e66f9-4cfc-400b-8a20-160b60caad6a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035043Z:a97cf25a-de38-4186-a71d-8dc466a2e009"
+ "AUSTRALIAEAST:20180607T142325Z:9f7e66f9-4cfc-400b-8a20-160b60caad6a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:42 GMT"
+ "Thu, 07 Jun 2018 14:23:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -460,28 +481,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "276fc480-48d4-44f9-925b-e1dd75f7e5aa"
+ "f5b74ce7-8b15-4eb3-830f-0c9913df02f3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9172.azuredatalakeanalytics.net\",\r\n \"accountId\": \"9841c631-178d-49d6-a90e-32893a023c4a\",\r\n \"creationTime\": \"2017-12-07T03:50:11.6771722Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:50:11.6771722Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172\",\r\n \"name\": \"ps9172\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3074.azuredatalakeanalytics.net\",\r\n \"accountId\": \"afb4f677-2397-4927-bf21-4e0d03e7ad7c\",\r\n \"creationTime\": \"2018-06-07T14:22:49.7082886Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:22:49.7082886Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074\",\r\n \"name\": \"ps3074\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -493,31 +514,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b715c17c-4cc6-400c-8b18-97f98a96b0d3"
+ "f8c7e07a-ea13-44e4-b2dc-11ba18f8c1c7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14982"
],
"x-ms-correlation-request-id": [
- "7f6d185b-aa6c-4d51-8f88-a7bdba672752"
+ "4b8aff58-1a60-4ca5-ae16-d94fd46678f0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035044Z:7f6d185b-aa6c-4d51-8f88-a7bdba672752"
+ "AUSTRALIAEAST:20180607T142326Z:4b8aff58-1a60-4ca5-ae16-d94fd46678f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:43 GMT"
+ "Thu, 07 Jun 2018 14:23:26 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -532,28 +550,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37ceb5c8-ca61-4fc1-ba71-80ddc977003a"
+ "f4103535-c81a-423a-ac9b-a7dc52df6329"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9172.azuredatalakeanalytics.net\",\r\n \"accountId\": \"9841c631-178d-49d6-a90e-32893a023c4a\",\r\n \"creationTime\": \"2017-12-07T03:50:11.6771722Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:50:44.8188488Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172\",\r\n \"name\": \"ps9172\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3074.azuredatalakeanalytics.net\",\r\n \"accountId\": \"afb4f677-2397-4927-bf21-4e0d03e7ad7c\",\r\n \"creationTime\": \"2018-06-07T14:22:49.7082886Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:23:28.7201888Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074\",\r\n \"name\": \"ps3074\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1226"
+ "1245"
],
"Content-Type": [
"application/json"
@@ -565,31 +583,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1f4eb1f7-2346-44e3-870a-a64f1c080dcf"
+ "c98eb646-b212-42a3-a8ec-87ca50f86c6f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14975"
],
"x-ms-correlation-request-id": [
- "e8d0c547-490d-49a2-84a2-4f3ad98e12c5"
+ "f445cb19-90d4-4727-8645-2f1644cd5fd2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035125Z:e8d0c547-490d-49a2-84a2-4f3ad98e12c5"
+ "AUSTRALIAEAST:20180607T142410Z:f445cb19-90d4-4727-8645-2f1644cd5fd2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:24 GMT"
+ "Thu, 07 Jun 2018 14:24:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -610,25 +625,25 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e9f96fb-2a21-4d83-a902-fcfd3556e841"
+ "12c6bfb4-6be3-49ea-8ec5-15eacbb67954"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "528"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -636,68 +651,56 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "7b44129f-9762-493c-9a38-54afb90dc3c8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"14990"
],
+ "x-ms-request-id": [
+ "3cdd25cb-8931-4a87-a87f-52a4a7f1343b"
+ ],
"x-ms-correlation-request-id": [
- "0860005b-cdc8-4d00-82f9-e283865ee7e4"
+ "3cdd25cb-8931-4a87-a87f-52a4a7f1343b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034929Z:0860005b-cdc8-4d00-82f9-e283865ee7e4"
+ "AUSTRALIAEAST:20180607T142159Z:3cdd25cb-8931-4a87-a87f-52a4a7f1343b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:29 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 14:21:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeStore/accounts/ps5223?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1MjIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeStore/accounts/ps214?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMTQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65667663-adec-4884-b589-94d523c86f16"
+ "462052e6-f816-4510-8579-37213bb67fa0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps5223' under resource group 'ps9309' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps214' under resource group 'ps1554' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "149"
+ "148"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -712,43 +715,46 @@
"gateway"
],
"x-ms-request-id": [
- "3b2b0d1e-f2bc-4341-9c03-dc8915274f57"
+ "9bd5d6bc-5ede-40aa-9e31-88fa0ec093f7"
],
"x-ms-correlation-request-id": [
- "3b2b0d1e-f2bc-4341-9c03-dc8915274f57"
+ "9bd5d6bc-5ede-40aa-9e31-88fa0ec093f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034930Z:3b2b0d1e-f2bc-4341-9c03-dc8915274f57"
+ "AUSTRALIAEAST:20180607T142201Z:9bd5d6bc-5ede-40aa-9e31-88fa0ec093f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:29 GMT"
+ "Thu, 07 Jun 2018 14:22:01 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeStore/accounts/ps5223?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1MjIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeStore/accounts/ps214?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMTQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5223.azuredatalakestore.net\",\r\n \"accountId\": \"a3154f16-0ddd-4080-933c-a252a90554e3\",\r\n \"creationTime\": \"2017-12-07T03:49:36.8164411Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:49:36.8164411Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f4dc0140-8a19-4f39-9b00-fc1bb0b3a545\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeStore/accounts/ps5223\",\r\n \"name\": \"ps5223\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps214.azuredatalakestore.net\",\r\n \"accountId\": \"3d9746d2-7d0c-4545-bd24-2f471e37c40e\",\r\n \"creationTime\": \"2018-06-07T14:22:09.8198339Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:22:09.8198339Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"b8986253-d26e-4f45-a00e-5f74cd06b3e8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeStore/accounts/ps214\",\r\n \"name\": \"ps214\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "989"
],
"Content-Type": [
"application/json"
@@ -760,31 +766,28 @@
"no-cache"
],
"x-ms-request-id": [
- "522fa229-fde1-44ed-b125-1fcf120d8707"
+ "6d47fdc1-3561-449e-a0e0-b7a9e2e0f276"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14984"
],
"x-ms-correlation-request-id": [
- "257aef36-bcfd-4713-96e8-0b2a1f3b7d1d"
+ "21fc2b08-5750-4399-8b7e-d18d2eba9d59"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035007Z:257aef36-bcfd-4713-96e8-0b2a1f3b7d1d"
+ "AUSTRALIAEAST:20180607T142244Z:21fc2b08-5750-4399-8b7e-d18d2eba9d59"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:06 GMT"
+ "Thu, 07 Jun 2018 14:22:43 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -799,34 +802,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeStore/accounts/ps5223?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1MjIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeStore/accounts/ps214?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyMTQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "7f637079-e8da-4269-b38b-6b5257dc6e23"
+ "c6fce694-a873-4c62-b1b3-d410dd73c95d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a3154f16-0ddd-4080-933c-a252a90554e3\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeStore/accounts/ps5223\",\r\n \"name\": \"ps5223\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3d9746d2-7d0c-4545-bd24-2f471e37c40e\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeStore/accounts/ps214\",\r\n \"name\": \"ps214\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "558"
],
"Content-Type": [
"application/json"
@@ -841,10 +844,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a3154f16-0ddd-4080-933c-a252a90554e30?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/3d9746d2-7d0c-4545-bd24-2f471e37c40e0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "6784520f-390f-4192-a72b-e17e7b971a1b"
+ "911f43a8-b414-4ebc-a5a6-1a568798aa03"
],
"X-Content-Type-Options": [
"nosniff"
@@ -853,25 +856,22 @@
"1198"
],
"x-ms-correlation-request-id": [
- "f32898d7-5aef-4198-8a5f-322aeb91f8f2"
+ "046c943d-94ba-4c06-b93f-6acb48c26743"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034934Z:f32898d7-5aef-4198-8a5f-322aeb91f8f2"
+ "AUSTRALIAEAST:20180607T142209Z:046c943d-94ba-4c06-b93f-6acb48c26743"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:34 GMT"
+ "Thu, 07 Jun 2018 14:22:08 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9309/providers/Microsoft.DataLakeStore/accounts/ps5223/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1554/providers/Microsoft.DataLakeStore/accounts/ps214/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -886,13 +886,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a3154f16-0ddd-4080-933c-a252a90554e30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2EzMTU0ZjE2LTBkZGQtNDA4MC05MzNjLWEyNTJhOTA1NTRlMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/3d9746d2-7d0c-4545-bd24-2f471e37c40e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzNkOTc0NmQyLTdkMGMtNDU0NS1iZDI0LTJmNDcxZTM3YzQwZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -913,31 +913,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b1b2f42a-7aee-4370-88fa-0507407335b7"
+ "f2a8aad4-db82-4127-9f16-f3fbadb236dc"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14987"
],
"x-ms-correlation-request-id": [
- "b094beb8-14a6-4882-aa30-efd8ea258560"
+ "e4aa7d58-9ca7-4716-9a0f-251a8ce20b0d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034945Z:b094beb8-14a6-4882-aa30-efd8ea258560"
+ "AUSTRALIAEAST:20180607T142220Z:e4aa7d58-9ca7-4716-9a0f-251a8ce20b0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:45 GMT"
+ "Thu, 07 Jun 2018 14:22:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -952,13 +949,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a3154f16-0ddd-4080-933c-a252a90554e30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2EzMTU0ZjE2LTBkZGQtNDA4MC05MzNjLWEyNTJhOTA1NTRlMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/3d9746d2-7d0c-4545-bd24-2f471e37c40e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzNkOTc0NmQyLTdkMGMtNDU0NS1iZDI0LTJmNDcxZTM3YzQwZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -979,31 +976,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4b0ad5b3-cc2b-4863-8b24-4805f5c31846"
+ "65f60143-8178-4d61-a9e3-6f82eeb082cf"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14986"
],
"x-ms-correlation-request-id": [
- "71e091d7-a621-4e51-84e0-bc6d3ac28663"
+ "0384ff3b-dca5-4c20-a50f-86cbea5dba47"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034955Z:71e091d7-a621-4e51-84e0-bc6d3ac28663"
+ "AUSTRALIAEAST:20180607T142231Z:0384ff3b-dca5-4c20-a50f-86cbea5dba47"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:49:55 GMT"
+ "Thu, 07 Jun 2018 14:22:31 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1018,13 +1012,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a3154f16-0ddd-4080-933c-a252a90554e30?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2EzMTU0ZjE2LTBkZGQtNDA4MC05MzNjLWEyNTJhOTA1NTRlMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/3d9746d2-7d0c-4545-bd24-2f471e37c40e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzNkOTc0NmQyLTdkMGMtNDU0NS1iZDI0LTJmNDcxZTM3YzQwZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1045,31 +1039,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a305b846-897e-4f13-b9b1-391307b2e590"
+ "a0617f83-d46c-474c-8279-473bffffb938"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14985"
],
"x-ms-correlation-request-id": [
- "784d0991-c615-4fbd-96d8-43f47574bb78"
+ "be52c7fc-ced0-4ba7-9902-51e7b1dd7a3f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035006Z:784d0991-c615-4fbd-96d8-43f47574bb78"
+ "AUSTRALIAEAST:20180607T142243Z:be52c7fc-ced0-4ba7-9902-51e7b1dd7a3f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:06 GMT"
+ "Thu, 07 Jun 2018 14:22:42 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1084,34 +1075,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps5223\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps214\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "196"
],
"x-ms-client-request-id": [
- "04cc03d2-872e-4300-a978-56b368e615a3"
+ "2e861dbb-afc5-4e27-ba8e-a5fb0bf9d764"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"9841c631-178d-49d6-a90e-32893a023c4a\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172\",\r\n \"name\": \"ps9172\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"afb4f677-2397-4927-bf21-4e0d03e7ad7c\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074\",\r\n \"name\": \"ps3074\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "485"
],
"Content-Type": [
"application/json"
@@ -1126,10 +1117,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/9841c631-178d-49d6-a90e-32893a023c4a0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/afb4f677-2397-4927-bf21-4e0d03e7ad7c0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "19caaa7b-8d88-4261-af31-0cef802a0162"
+ "62655c21-80bc-4fc2-87a0-f850b4df0719"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1138,25 +1129,22 @@
"1199"
],
"x-ms-correlation-request-id": [
- "aec7389b-1a04-4fd4-aba0-a276fbadbc33"
+ "79b370a7-5107-4066-bcd8-5fd1dd6bd001"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035010Z:aec7389b-1a04-4fd4-aba0-a276fbadbc33"
+ "AUSTRALIAEAST:20180607T142248Z:79b370a7-5107-4066-bcd8-5fd1dd6bd001"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:09 GMT"
+ "Thu, 07 Jun 2018 14:22:48 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1171,16 +1159,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/9841c631-178d-49d6-a90e-32893a023c4a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy85ODQxYzYzMS0xNzhkLTQ5ZDYtYTkwZS0zMjg5M2EwMjNjNGEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/afb4f677-2397-4927-bf21-4e0d03e7ad7c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9hZmI0ZjY3Ny0yMzk3LTQ5MjctYmYyMS00ZTBkMDNlN2FkN2MwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1198,31 +1186,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fda488c4-1e05-47d0-8bf0-68e605a14dc1"
+ "f540fc72-5b67-4914-a51e-78c7189c75aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14987"
],
"x-ms-correlation-request-id": [
- "9fa763a5-17d2-471d-adcd-cfda26f9a359"
+ "6151e524-9f0a-4366-b14d-efc96cf99011"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035020Z:9fa763a5-17d2-471d-adcd-cfda26f9a359"
+ "AUSTRALIAEAST:20180607T142259Z:6151e524-9f0a-4366-b14d-efc96cf99011"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:20 GMT"
+ "Thu, 07 Jun 2018 14:22:59 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1237,16 +1222,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/9841c631-178d-49d6-a90e-32893a023c4a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy85ODQxYzYzMS0xNzhkLTQ5ZDYtYTkwZS0zMjg5M2EwMjNjNGEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/afb4f677-2397-4927-bf21-4e0d03e7ad7c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9hZmI0ZjY3Ny0yMzk3LTQ5MjctYmYyMS00ZTBkMDNlN2FkN2MwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1264,31 +1249,28 @@
"no-cache"
],
"x-ms-request-id": [
- "31c77913-bcfc-4e87-8e16-7e5faeea2f27"
+ "79428e8c-6f69-4f92-8b4f-0fa3a91c330d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14986"
],
"x-ms-correlation-request-id": [
- "72678317-9074-401b-80f7-2166c9550544"
+ "c16492dd-b5dc-4f5e-afab-a56e1458f771"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035031Z:72678317-9074-401b-80f7-2166c9550544"
+ "AUSTRALIAEAST:20180607T142311Z:c16492dd-b5dc-4f5e-afab-a56e1458f771"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:30 GMT"
+ "Thu, 07 Jun 2018 14:23:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1303,16 +1285,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/9841c631-178d-49d6-a90e-32893a023c4a0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy85ODQxYzYzMS0xNzhkLTQ5ZDYtYTkwZS0zMjg5M2EwMjNjNGEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/afb4f677-2397-4927-bf21-4e0d03e7ad7c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9hZmI0ZjY3Ny0yMzk3LTQ5MjctYmYyMS00ZTBkMDNlN2FkN2MwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1330,31 +1312,28 @@
"no-cache"
],
"x-ms-request-id": [
- "04b651f0-9fcd-4c92-a57e-ff4e5fdc2df9"
+ "89fd13af-91cb-453c-82e0-6c90df73292d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14985"
],
"x-ms-correlation-request-id": [
- "279aeabe-5da4-4f6e-a874-1c73de5e2e42"
+ "fb6056ac-5f61-419c-b0d1-70432c4cc082"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035041Z:279aeabe-5da4-4f6e-a874-1c73de5e2e42"
+ "AUSTRALIAEAST:20180607T142322Z:fb6056ac-5f61-419c-b0d1-70432c4cc082"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:41 GMT"
+ "Thu, 07 Jun 2018 14:23:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1369,10 +1348,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"firewallState\": \"Disabled\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"newTier\": \"Commitment_100AUHours\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1381,22 +1360,22 @@
"117"
],
"x-ms-client-request-id": [
- "5f0c34af-6cb8-4608-bc9b-0ef5a08c9220"
+ "7c5927d1-d1d9-43ef-ae2a-4ff9a769f163"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9172.azuredatalakeanalytics.net\",\r\n \"accountId\": \"9841c631-178d-49d6-a90e-32893a023c4a\",\r\n \"creationTime\": \"2017-12-07T03:50:11.6771722Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:50:44.8188488Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172\",\r\n \"name\": \"ps9172\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3074.azuredatalakeanalytics.net\",\r\n \"accountId\": \"afb4f677-2397-4927-bf21-4e0d03e7ad7c\",\r\n \"creationTime\": \"2018-06-07T14:22:49.7082886Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:23:28.7201888Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074\",\r\n \"name\": \"ps3074\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "958"
+ "977"
],
"Content-Type": [
"application/json"
@@ -1408,31 +1387,28 @@
"no-cache"
],
"x-ms-request-id": [
- "512b18b2-9233-458a-854a-22da5d8eae7c"
+ "6c7d72be-9fc3-4c91-b9e2-e06824453ca0"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "052bddd8-115d-4cb1-982d-3267b557d326"
+ "6fa9c51c-b577-4fa6-be89-d7c938edad30"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035045Z:052bddd8-115d-4cb1-982d-3267b557d326"
+ "AUSTRALIAEAST:20180607T142329Z:6fa9c51c-b577-4fa6-be89-d7c938edad30"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:45 GMT"
+ "Thu, 07 Jun 2018 14:23:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1447,25 +1423,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTAxOT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc87cbec-635a-4403-ae2e-f12f835ca03f"
+ "c151c1ad-2d25-4e4e-a75e-2f6056c489d5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9019' under resource group 'ps9309' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9191' under resource group 'ps1554' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1483,46 +1459,49 @@
"gateway"
],
"x-ms-request-id": [
- "b969be7e-32a4-42ed-a153-fa5589cbe229"
+ "a8e07c9e-68b8-4088-9ed4-76e548182b40"
],
"x-ms-correlation-request-id": [
- "b969be7e-32a4-42ed-a153-fa5589cbe229"
+ "a8e07c9e-68b8-4088-9ed4-76e548182b40"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035046Z:b969be7e-32a4-42ed-a153-fa5589cbe229"
+ "AUSTRALIAEAST:20180607T142329Z:a8e07c9e-68b8-4088-9ed4-76e548182b40"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:46 GMT"
+ "Thu, 07 Jun 2018 14:23:29 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTAxOT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7aafc7b9-137c-4b4c-bc97-1240e9f69995"
+ "43858c55-36c1-4995-9de4-80b10a6919c8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9019' under resource group 'ps9309' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9191' under resource group 'ps1554' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1540,43 +1519,46 @@
"gateway"
],
"x-ms-request-id": [
- "27e35ee7-9f0f-4dda-b7ac-4fcafd36fa85"
+ "a8bcf727-1399-48fd-b05a-a7c18aa38ace"
],
"x-ms-correlation-request-id": [
- "27e35ee7-9f0f-4dda-b7ac-4fcafd36fa85"
+ "a8bcf727-1399-48fd-b05a-a7c18aa38ace"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035046Z:27e35ee7-9f0f-4dda-b7ac-4fcafd36fa85"
+ "AUSTRALIAEAST:20180607T142330Z:a8bcf727-1399-48fd-b05a-a7c18aa38ace"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:46 GMT"
+ "Thu, 07 Jun 2018 14:23:29 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTAxOT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9019.azuredatalakeanalytics.net\",\r\n \"accountId\": \"84a19d42-7339-4ade-aa79-0ea954105602\",\r\n \"creationTime\": \"2017-12-07T03:50:51.695994Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:50:51.695994Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019\",\r\n \"name\": \"ps9019\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9191.azuredatalakeanalytics.net\",\r\n \"accountId\": \"3bce409b-f8b1-4f4b-9b85-146cf35f07cb\",\r\n \"creationTime\": \"2018-06-07T14:23:36.2395626Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:23:36.2395626Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191\",\r\n \"name\": \"ps9191\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1234"
+ "1255"
],
"Content-Type": [
"application/json"
@@ -1588,31 +1570,28 @@
"no-cache"
],
"x-ms-request-id": [
- "74accfaf-1ce0-481f-b65a-df1cd4926df9"
+ "35111eb6-9da1-498a-83ff-c4fdb493524a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14976"
],
"x-ms-correlation-request-id": [
- "23a16396-95c6-46c6-b2ea-ab4e7cf17842"
+ "e3e6d9ad-3b10-4780-9a11-20d299c6b919"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035121Z:23a16396-95c6-46c6-b2ea-ab4e7cf17842"
+ "AUSTRALIAEAST:20180607T142408Z:e3e6d9ad-3b10-4780-9a11-20d299c6b919"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:20 GMT"
+ "Thu, 07 Jun 2018 14:24:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1627,28 +1606,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTAxOT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "716e0e2f-033a-431a-b810-2bc167570856"
+ "3a4f8001-7435-40e7-9b46-57554d14b552"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9019.azuredatalakeanalytics.net\",\r\n \"accountId\": \"84a19d42-7339-4ade-aa79-0ea954105602\",\r\n \"creationTime\": \"2017-12-07T03:50:51.695994Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:50:51.695994Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019\",\r\n \"name\": \"ps9019\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9191.azuredatalakeanalytics.net\",\r\n \"accountId\": \"3bce409b-f8b1-4f4b-9b85-146cf35f07cb\",\r\n \"creationTime\": \"2018-06-07T14:23:36.2395626Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:23:36.2395626Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191\",\r\n \"name\": \"ps9191\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1234"
+ "1255"
],
"Content-Type": [
"application/json"
@@ -1660,31 +1639,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c2428ad4-0ad8-41b6-b5b6-4d0cd95d548e"
+ "7e177747-d4ab-4348-8d8a-1e1ace7cdb67"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14972"
],
"x-ms-correlation-request-id": [
- "70d06dd1-d997-44c5-a6d8-82826db55cb6"
+ "bb4a153e-1201-406b-b575-a1a4eac78668"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035129Z:70d06dd1-d997-44c5-a6d8-82826db55cb6"
+ "AUSTRALIAEAST:20180607T142427Z:bb4a153e-1201-406b-b575-a1a4eac78668"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:28 GMT"
+ "Thu, 07 Jun 2018 14:24:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1699,34 +1675,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTAxOT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "241"
+ "237"
],
"x-ms-client-request-id": [
- "4b0825cb-7cb5-4f62-bb11-5b875b5d6430"
+ "f53ad009-3de8-4aeb-91b3-7cbea599d81f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5223\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5223\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"84a19d42-7339-4ade-aa79-0ea954105602\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019\",\r\n \"name\": \"ps9019\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps214\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps214\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3bce409b-f8b1-4f4b-9b85-146cf35f07cb\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191\",\r\n \"name\": \"ps9191\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "523"
+ "519"
],
"Content-Type": [
"application/json"
@@ -1741,37 +1717,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/84a19d42-7339-4ade-aa79-0ea9541056020?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/3bce409b-f8b1-4f4b-9b85-146cf35f07cb0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "107cc36f-5bed-44cb-b7d2-f15421205523"
+ "f08d07ba-711a-4377-9373-3be7b67ded48"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "2c7d9f75-631b-46ba-a30b-a35aba98b66d"
+ "a38fb5f7-cca2-4490-afec-2b35593932e1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035049Z:2c7d9f75-631b-46ba-a30b-a35aba98b66d"
+ "AUSTRALIAEAST:20180607T142333Z:a38fb5f7-cca2-4490-afec-2b35593932e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:48 GMT"
+ "Thu, 07 Jun 2018 14:23:33 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1786,16 +1759,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/84a19d42-7339-4ade-aa79-0ea9541056020?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84NGExOWQ0Mi03MzM5LTRhZGUtYWE3OS0wZWE5NTQxMDU2MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/3bce409b-f8b1-4f4b-9b85-146cf35f07cb0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8zYmNlNDA5Yi1mOGIxLTRmNGItOWI4NS0xNDZjZjM1ZjA3Y2IwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1813,31 +1786,28 @@
"no-cache"
],
"x-ms-request-id": [
- "47d20aa5-b418-4ccf-a25f-fba614d4ec52"
+ "9da6355f-6daf-44ef-855f-61f3b54e807a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14979"
],
"x-ms-correlation-request-id": [
- "0bde8f1a-d832-4846-ba0f-38b9861a4c0d"
+ "e34651bf-a090-4268-9905-31e576f3f371"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035059Z:0bde8f1a-d832-4846-ba0f-38b9861a4c0d"
+ "AUSTRALIAEAST:20180607T142344Z:e34651bf-a090-4268-9905-31e576f3f371"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:50:59 GMT"
+ "Thu, 07 Jun 2018 14:23:44 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1852,16 +1822,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/84a19d42-7339-4ade-aa79-0ea9541056020?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84NGExOWQ0Mi03MzM5LTRhZGUtYWE3OS0wZWE5NTQxMDU2MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/3bce409b-f8b1-4f4b-9b85-146cf35f07cb0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8zYmNlNDA5Yi1mOGIxLTRmNGItOWI4NS0xNDZjZjM1ZjA3Y2IwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1879,31 +1849,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b5da2d1d-c89a-4edc-a776-836f18333c9e"
+ "648709f2-2f11-42d0-a120-4dd29613af37"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14978"
],
"x-ms-correlation-request-id": [
- "9c0e7db2-189e-4176-aa26-79418ebd23fc"
+ "f6ccfd5f-3602-4665-a0da-b733da8b1afd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035110Z:9c0e7db2-189e-4176-aa26-79418ebd23fc"
+ "AUSTRALIAEAST:20180607T142356Z:f6ccfd5f-3602-4665-a0da-b733da8b1afd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:10 GMT"
+ "Thu, 07 Jun 2018 14:23:55 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1918,16 +1885,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/84a19d42-7339-4ade-aa79-0ea9541056020?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84NGExOWQ0Mi03MzM5LTRhZGUtYWE3OS0wZWE5NTQxMDU2MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/3bce409b-f8b1-4f4b-9b85-146cf35f07cb0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8zYmNlNDA5Yi1mOGIxLTRmNGItOWI4NS0xNDZjZjM1ZjA3Y2IwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1945,31 +1912,28 @@
"no-cache"
],
"x-ms-request-id": [
- "83d0f47d-beea-438b-8f80-395eac36d1ac"
+ "f2895a6f-0fb4-4982-ac1c-7d721b8405f8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14977"
],
"x-ms-correlation-request-id": [
- "40d887bd-5aeb-4aef-a31b-d613105a897c"
+ "526de61e-3cde-4449-833e-363b9bf32433"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035121Z:40d887bd-5aeb-4aef-a31b-d613105a897c"
+ "AUSTRALIAEAST:20180607T142407Z:526de61e-3cde-4449-833e-363b9bf32433"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:20 GMT"
+ "Thu, 07 Jun 2018 14:24:06 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1984,22 +1948,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9172?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "89601842-87f9-4b56-a635-88569b4d39b4"
+ "cd9bf42a-84d9-4dc4-8138-9dd4d0d078b9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2013,29 +1977,101 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/afb4f677-2397-4927-bf21-4e0d03e7ad7c2?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "1b8e90a1-9a0e-4ee1-bf44-d54c17810d2c"
+ "fec74d21-848c-4169-8728-66ee243e35c6"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "1ca03a86-33b8-4187-9e24-fb55573145a8"
+ "1e500ea7-4444-4d6c-92a2-adea7d80fe97"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035128Z:1ca03a86-33b8-4187-9e24-fb55573145a8"
+ "AUSTRALIAEAST:20180607T142413Z:1e500ea7-4444-4d6c-92a2-adea7d80fe97"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 14:24:12 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074/operationresults/2?api-version=2016-11-01"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/afb4f677-2397-4927-bf21-4e0d03e7ad7c2?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9hZmI0ZjY3Ny0yMzk3LTQ5MjctYmYyMS00ZTBkMDNlN2FkN2MyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "79d1e924-3564-4121-9eff-a81c32e13a0a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7906141-685c-424f-9424-914b20a39739"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T142425Z:a7906141-685c-424f-9424-914b20a39739"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:27 GMT"
+ "Thu, 07 Jun 2018 14:24:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2050,22 +2086,82 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9309/providers/Microsoft.DataLakeAnalytics/accounts/ps9019?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTAxOT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps3074/operationresults/2?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMzA3NC9vcGVyYXRpb25yZXN1bHRzLzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cad5631b-d1b7-4ae4-88f4-6cd1bbae4a81"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "35097883-9596-40e4-8eb6-a930dc985c6b"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T142426Z:35097883-9596-40e4-8eb6-a930dc985c6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 14:24:25 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1554/providers/Microsoft.DataLakeAnalytics/accounts/ps9191?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTE5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "558aefb2-c822-423e-9252-b72a86f58f8b"
+ "74caf944-8ce1-4f4e-ae3b-6e1350b61a3a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2080,28 +2176,28 @@
"no-cache"
],
"x-ms-request-id": [
- "698b308d-8d77-4a85-bbe4-3a0c4a0e0a16"
+ "d42c0ba8-bede-4722-a15f-d7fb0cf4b905"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "4324953f-ada4-4d29-8637-950f43589d95"
+ "c9d89454-1ea6-457b-92e9-3ed2336f735a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035132Z:4324953f-ada4-4d29-8637-950f43589d95"
+ "AUSTRALIAEAST:20180607T142432Z:c9d89454-1ea6-457b-92e9-3ed2336f735a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:32 GMT"
+ "Thu, 07 Jun 2018 14:24:31 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2116,13 +2212,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9309?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTMwOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1554?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMTU1ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31e8d1c5-bc7b-4be7-85a0-c711301e188f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2139,44 +2244,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-request-id": [
- "1c95aa80-a2c9-472b-baa4-1a1dcc5d324f"
+ "f1a621f4-5938-4d9d-9335-fdc9516d61ea"
],
"x-ms-correlation-request-id": [
- "1c95aa80-a2c9-472b-baa4-1a1dcc5d324f"
+ "f1a621f4-5938-4d9d-9335-fdc9516d61ea"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035135Z:1c95aa80-a2c9-472b-baa4-1a1dcc5d324f"
+ "AUSTRALIAEAST:20180607T142436Z:f1a621f4-5938-4d9d-9335-fdc9516d61ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:34 GMT"
+ "Thu, 07 Jun 2018 14:24:35 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek1Ea3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU5UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2194,43 +2302,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14982"
],
"x-ms-request-id": [
- "f6822a19-6a33-4764-a0e3-1d793a94c304"
+ "43444d83-0043-4ade-a23c-a17301ea704d"
],
"x-ms-correlation-request-id": [
- "f6822a19-6a33-4764-a0e3-1d793a94c304"
+ "43444d83-0043-4ade-a23c-a17301ea704d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035135Z:f6822a19-6a33-4764-a0e3-1d793a94c304"
+ "AUSTRALIAEAST:20180607T142451Z:43444d83-0043-4ade-a23c-a17301ea704d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:34 GMT"
+ "Thu, 07 Jun 2018 14:24:51 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek1Ea3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU5UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2248,43 +2359,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14981"
],
"x-ms-request-id": [
- "29dd8d3b-3b3c-4563-ad76-563c87ee6c4c"
+ "35e7889b-f07a-4b60-bd2c-f7e99785800a"
],
"x-ms-correlation-request-id": [
- "29dd8d3b-3b3c-4563-ad76-563c87ee6c4c"
+ "35e7889b-f07a-4b60-bd2c-f7e99785800a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035150Z:29dd8d3b-3b3c-4563-ad76-563c87ee6c4c"
+ "AUSTRALIAEAST:20180607T142507Z:35e7889b-f07a-4b60-bd2c-f7e99785800a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:51:49 GMT"
+ "Thu, 07 Jun 2018 14:25:07 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek1Ea3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU5UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2302,43 +2416,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14980"
],
"x-ms-request-id": [
- "a751feb2-c55c-46c9-be12-457e52376ea4"
+ "0758655e-931a-442b-bb56-0daa1dece014"
],
"x-ms-correlation-request-id": [
- "a751feb2-c55c-46c9-be12-457e52376ea4"
+ "0758655e-931a-442b-bb56-0daa1dece014"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035206Z:a751feb2-c55c-46c9-be12-457e52376ea4"
+ "AUSTRALIAEAST:20180607T142522Z:0758655e-931a-442b-bb56-0daa1dece014"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:52:05 GMT"
+ "Thu, 07 Jun 2018 14:25:22 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek1Ea3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU5UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2356,43 +2473,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14979"
],
"x-ms-request-id": [
- "9e357523-5cd8-4228-bed7-b01b652fb6a6"
+ "bbf298a0-b0c7-409e-9a87-2513f1391d33"
],
"x-ms-correlation-request-id": [
- "9e357523-5cd8-4228-bed7-b01b652fb6a6"
+ "bbf298a0-b0c7-409e-9a87-2513f1391d33"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035221Z:9e357523-5cd8-4228-bed7-b01b652fb6a6"
+ "AUSTRALIAEAST:20180607T142538Z:bbf298a0-b0c7-409e-9a87-2513f1391d33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:52:20 GMT"
+ "Thu, 07 Jun 2018 14:25:37 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek1Ea3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU5UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2410,43 +2530,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14978"
],
"x-ms-request-id": [
- "b9c57272-b3c5-4c17-ba66-90389dd68d8c"
+ "a2d43dcb-8bec-4371-be83-78c63c69c183"
],
"x-ms-correlation-request-id": [
- "b9c57272-b3c5-4c17-ba66-90389dd68d8c"
+ "a2d43dcb-8bec-4371-be83-78c63c69c183"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035236Z:b9c57272-b3c5-4c17-ba66-90389dd68d8c"
+ "AUSTRALIAEAST:20180607T142554Z:a2d43dcb-8bec-4371-be83-78c63c69c183"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:52:36 GMT"
+ "Thu, 07 Jun 2018 14:25:53 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek1Ea3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU5UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2460,47 +2583,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14977"
],
"x-ms-request-id": [
- "2aa22305-d8e2-4293-9499-79cbbb1a8d70"
+ "8ed05855-b694-4b03-b4ef-0de3a686ce88"
],
"x-ms-correlation-request-id": [
- "2aa22305-d8e2-4293-9499-79cbbb1a8d70"
+ "8ed05855-b694-4b03-b4ef-0de3a686ce88"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035252Z:2aa22305-d8e2-4293-9499-79cbbb1a8d70"
+ "AUSTRALIAEAST:20180607T142609Z:8ed05855-b694-4b03-b4ef-0de3a686ce88"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:52:51 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 14:26:09 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzMDktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek1Ea3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1NTQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU5UUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2515,25 +2635,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14976"
],
"x-ms-request-id": [
- "006fc01a-1528-4824-a5cc-7113aaabf22f"
+ "1099f3a0-c08b-4e32-bd38-25c2470d6e79"
],
"x-ms-correlation-request-id": [
- "006fc01a-1528-4824-a5cc-7113aaabf22f"
+ "1099f3a0-c08b-4e32-bd38-25c2470d6e79"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035307Z:006fc01a-1528-4824-a5cc-7113aaabf22f"
+ "AUSTRALIAEAST:20180607T142610Z:1099f3a0-c08b-4e32-bd38-25c2470d6e79"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:53:06 GMT"
+ "Thu, 07 Jun 2018 14:26:10 GMT"
]
},
"StatusCode": 200
@@ -2541,12 +2664,12 @@
],
"Names": {
"": [
- "ps9309",
- "ps9172",
- "ps5223"
+ "ps1554",
+ "ps3074",
+ "ps214"
],
"Test-DataLakeAnalyticsAccountTiers": [
- "ps9019"
+ "ps9191"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaCatalog.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaCatalog.json
index 70c89b3c2de5..cb0993fe2fce 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaCatalog.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaCatalog.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-request-id": [
- "f248e84a-0e71-447d-918e-21b649f71046"
+ "dfb09481-944a-4389-b0a3-b319ae363c94"
],
"x-ms-correlation-request-id": [
- "f248e84a-0e71-447d-918e-21b649f71046"
+ "dfb09481-944a-4389-b0a3-b319ae363c94"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040014Z:f248e84a-0e71-447d-918e-21b649f71046"
+ "AUSTRALIAEAST:20180619T143405Z:dfb09481-944a-4389-b0a3-b319ae363c94"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:00:14 GMT"
+ "Tue, 19 Jun 2018 14:34:04 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,49 +76,61 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14999"
],
"x-ms-request-id": [
- "a26d3b86-168a-4a9f-aabf-1ee421474d57"
+ "dba4a82e-02fe-4ed7-90ba-f5e850a92f89"
],
"x-ms-correlation-request-id": [
- "a26d3b86-168a-4a9f-aabf-1ee421474d57"
+ "dba4a82e-02fe-4ed7-90ba-f5e850a92f89"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040014Z:a26d3b86-168a-4a9f-aabf-1ee421474d57"
+ "AUSTRALIAEAST:20180619T143405Z:dba4a82e-02fe-4ed7-90ba-f5e850a92f89"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:00:14 GMT"
+ "Tue, 19 Jun 2018 14:34:05 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps929?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTI5P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4059?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDA1OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "cb346472-a13b-4e83-83be-554d52e5c6ed"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929\",\r\n \"name\": \"ps929\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059\",\r\n \"name\": \"ps4059\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "164"
+ "166"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,52 +142,55 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1199"
],
"x-ms-request-id": [
- "cf709079-bae6-496d-964f-452da878affc"
+ "f725732b-06c1-4e7b-93bf-89e5d579e783"
],
"x-ms-correlation-request-id": [
- "cf709079-bae6-496d-964f-452da878affc"
+ "f725732b-06c1-4e7b-93bf-89e5d579e783"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040025Z:cf709079-bae6-496d-964f-452da878affc"
+ "AUSTRALIAEAST:20180619T143420Z:f725732b-06c1-4e7b-93bf-89e5d579e783"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:00:25 GMT"
+ "Tue, 19 Jun 2018 14:34:19 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1MDY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8c2f844-f463-47e5-a432-667d66acf360"
+ "7d58db10-490d-428d-bf28-722b7246d4ed"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7758' under resource group 'ps929' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps5068' under resource group 'ps4059' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "148"
+ "149"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -187,43 +205,46 @@
"gateway"
],
"x-ms-request-id": [
- "88d0ecbe-0cdf-424e-91ec-30d737e63cba"
+ "4601a1b4-d648-4e08-96cc-ae9d07bcf415"
],
"x-ms-correlation-request-id": [
- "88d0ecbe-0cdf-424e-91ec-30d737e63cba"
+ "4601a1b4-d648-4e08-96cc-ae9d07bcf415"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040028Z:88d0ecbe-0cdf-424e-91ec-30d737e63cba"
+ "AUSTRALIAEAST:20180619T143422Z:4601a1b4-d648-4e08-96cc-ae9d07bcf415"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:00:27 GMT"
+ "Tue, 19 Jun 2018 14:34:22 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1MDY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7758.azuredatalakestore.net\",\r\n \"accountId\": \"425664bf-ffc4-4108-9dcd-ec230f330785\",\r\n \"creationTime\": \"2017-12-07T04:00:33.3696822Z\",\r\n \"lastModifiedTime\": \"2017-12-07T04:00:33.3696822Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"57cb7791-c38a-493a-a316-867e08cab1f8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758\",\r\n \"name\": \"ps7758\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5068.azuredatalakestore.net\",\r\n \"accountId\": \"65b8cf5c-e51b-4232-a55b-5728f8590682\",\r\n \"creationTime\": \"2018-06-19T14:34:30.9506841Z\",\r\n \"lastModifiedTime\": \"2018-06-19T14:34:30.9506841Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6c28565d-df68-4a6f-b8fd-d81905c5bd8f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068\",\r\n \"name\": \"ps5068\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "907"
+ "992"
],
"Content-Type": [
"application/json"
@@ -235,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "998b0bc8-5526-4ec6-9f3e-45fe935b7804"
+ "f1563015-46a9-425f-a298-055f906087ff"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14995"
],
"x-ms-correlation-request-id": [
- "5637ebcb-3b1d-41c5-88d3-ea4463ddfd29"
+ "81b1c6e6-74d9-484a-8e66-08317dabea3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040105Z:5637ebcb-3b1d-41c5-88d3-ea4463ddfd29"
+ "AUSTRALIAEAST:20180619T143506Z:81b1c6e6-74d9-484a-8e66-08317dabea3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:05 GMT"
+ "Tue, 19 Jun 2018 14:35:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -274,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1MDY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fdb5eab-06e3-4039-99e0-c8ee8c17af42"
+ "ab10854b-9da2-4847-957e-e69bd3fdad63"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7758.azuredatalakestore.net\",\r\n \"accountId\": \"425664bf-ffc4-4108-9dcd-ec230f330785\",\r\n \"creationTime\": \"2017-12-07T04:00:33.3696822Z\",\r\n \"lastModifiedTime\": \"2017-12-07T04:00:33.3696822Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"57cb7791-c38a-493a-a316-867e08cab1f8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758\",\r\n \"name\": \"ps7758\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5068.azuredatalakestore.net\",\r\n \"accountId\": \"65b8cf5c-e51b-4232-a55b-5728f8590682\",\r\n \"creationTime\": \"2018-06-19T14:34:30.9506841Z\",\r\n \"lastModifiedTime\": \"2018-06-19T14:34:30.9506841Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6c28565d-df68-4a6f-b8fd-d81905c5bd8f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068\",\r\n \"name\": \"ps5068\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "907"
+ "992"
],
"Content-Type": [
"application/json"
@@ -307,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c76eee99-39e1-49d5-a113-aa21a7466010"
+ "f3df317e-d956-4b49-9b6a-f9721f6e1498"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14994"
],
"x-ms-correlation-request-id": [
- "d38e4660-c854-4b1b-bdb2-94d3a42c36ef"
+ "07c7cfe9-8927-4b60-a880-7399d10616c0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040746Z:d38e4660-c854-4b1b-bdb2-94d3a42c36ef"
+ "AUSTRALIAEAST:20180619T144225Z:07c7cfe9-8927-4b60-a880-7399d10616c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:46 GMT"
+ "Tue, 19 Jun 2018 14:42:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -346,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1MDY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "da383e66-4ff2-47a9-a830-6310d3e55283"
+ "c9206cbd-ab13-47dd-8107-6b66cca56e10"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"425664bf-ffc4-4108-9dcd-ec230f330785\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758\",\r\n \"name\": \"ps7758\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"65b8cf5c-e51b-4232-a55b-5728f8590682\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068\",\r\n \"name\": \"ps5068\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "561"
+ "560"
],
"Content-Type": [
"application/json"
@@ -388,37 +403,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/425664bf-ffc4-4108-9dcd-ec230f3307850?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/65b8cf5c-e51b-4232-a55b-5728f85906820?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "1dc7be3c-7839-4311-b8eb-5e53bfb9c61e"
+ "c90ab6c0-23c2-43a3-848e-382d74052019"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "af0fe334-38ae-4c3a-80fa-2a15834e1518"
+ "34f89226-9952-4681-8204-d0d924339ae6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040032Z:af0fe334-38ae-4c3a-80fa-2a15834e1518"
+ "AUSTRALIAEAST:20180619T143430Z:34f89226-9952-4681-8204-d0d924339ae6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:00:31 GMT"
+ "Tue, 19 Jun 2018 14:34:29 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -433,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/425664bf-ffc4-4108-9dcd-ec230f3307850?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQyNTY2NGJmLWZmYzQtNDEwOC05ZGNkLWVjMjMwZjMzMDc4NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/65b8cf5c-e51b-4232-a55b-5728f85906820?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzY1YjhjZjVjLWU1MWItNDIzMi1hNTViLTU3MjhmODU5MDY4MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -460,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f3e75b09-4b8d-4503-9869-df79515884f2"
+ "505bb8fc-1038-41b3-acd3-c1b85b07bc00"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14998"
],
"x-ms-correlation-request-id": [
- "f999f83c-d576-4aab-8ca3-4da540374c42"
+ "4c3fb10e-c3cb-4ea3-8670-1bde13e7e62a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040043Z:f999f83c-d576-4aab-8ca3-4da540374c42"
+ "AUSTRALIAEAST:20180619T143441Z:4c3fb10e-c3cb-4ea3-8670-1bde13e7e62a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:00:43 GMT"
+ "Tue, 19 Jun 2018 14:34:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -499,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/425664bf-ffc4-4108-9dcd-ec230f3307850?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQyNTY2NGJmLWZmYzQtNDEwOC05ZGNkLWVjMjMwZjMzMDc4NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/65b8cf5c-e51b-4232-a55b-5728f85906820?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzY1YjhjZjVjLWU1MWItNDIzMi1hNTViLTU3MjhmODU5MDY4MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -526,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f60e2602-5826-43a0-b368-ed38debf6438"
+ "dc5e3e34-afb3-4d08-886a-9dc03c0bf3e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14997"
],
"x-ms-correlation-request-id": [
- "0a3ffc8d-660f-40d8-810b-3e664693a3bc"
+ "ff3c5419-c7a1-4856-a911-71f7bf7682f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040054Z:0a3ffc8d-660f-40d8-810b-3e664693a3bc"
+ "AUSTRALIAEAST:20180619T143453Z:ff3c5419-c7a1-4856-a911-71f7bf7682f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:00:54 GMT"
+ "Tue, 19 Jun 2018 14:34:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -565,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/425664bf-ffc4-4108-9dcd-ec230f3307850?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQyNTY2NGJmLWZmYzQtNDEwOC05ZGNkLWVjMjMwZjMzMDc4NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/65b8cf5c-e51b-4232-a55b-5728f85906820?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzY1YjhjZjVjLWU1MWItNDIzMi1hNTViLTU3MjhmODU5MDY4MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -592,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "25ebc968-6ce2-422a-931b-958dc6753caf"
+ "410240f3-7199-4c23-a3f9-4fc1a8759fa4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14996"
],
"x-ms-correlation-request-id": [
- "5daf4e5f-ea64-4396-ab4a-d40ad125d773"
+ "4f52b5c6-cc82-42f0-af39-d61da106966d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040104Z:5daf4e5f-ea64-4396-ab4a-d40ad125d773"
+ "AUSTRALIAEAST:20180619T143504Z:4f52b5c6-cc82-42f0-af39-d61da106966d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:04 GMT"
+ "Tue, 19 Jun 2018 14:35:04 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -631,28 +634,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9a4d0ac-d7e7-412a-a9d7-ee3ef5f6da54"
+ "f3793e8d-d887-49c3-b01c-253eef721390"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4093' under resource group 'ps929' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4793' under resource group 'ps4059' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "152"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -667,49 +670,52 @@
"gateway"
],
"x-ms-request-id": [
- "8a7de80c-d3e0-4d71-a0ac-5ba3a8dfbf97"
+ "5891ab50-b6d5-4abc-bad5-62c2f9c5c93a"
],
"x-ms-correlation-request-id": [
- "8a7de80c-d3e0-4d71-a0ac-5ba3a8dfbf97"
+ "5891ab50-b6d5-4abc-bad5-62c2f9c5c93a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040106Z:8a7de80c-d3e0-4d71-a0ac-5ba3a8dfbf97"
+ "AUSTRALIAEAST:20180619T143507Z:5891ab50-b6d5-4abc-bad5-62c2f9c5c93a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:06 GMT"
+ "Tue, 19 Jun 2018 14:35:07 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "818a4bd8-da73-4d8b-a75e-436d877cd912"
+ "ad9430fc-6943-4656-ab41-e0f4fc87b057"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4093' under resource group 'ps929' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4793' under resource group 'ps4059' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "152"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -724,43 +730,46 @@
"gateway"
],
"x-ms-request-id": [
- "4039d026-dcf4-429b-9b32-7c628cddf1a8"
+ "030e7d54-6532-40da-950c-1e7fc270160f"
],
"x-ms-correlation-request-id": [
- "4039d026-dcf4-429b-9b32-7c628cddf1a8"
+ "030e7d54-6532-40da-950c-1e7fc270160f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040106Z:4039d026-dcf4-429b-9b32-7c628cddf1a8"
+ "AUSTRALIAEAST:20180619T143508Z:030e7d54-6532-40da-950c-1e7fc270160f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:06 GMT"
+ "Tue, 19 Jun 2018 14:35:07 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7758\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4093.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1b14bae8-4c46-413b-b299-54e441ffac0d\",\r\n \"creationTime\": \"2017-12-07T04:01:10.7889752Z\",\r\n \"lastModifiedTime\": \"2017-12-07T04:01:10.7889752Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093\",\r\n \"name\": \"ps4093\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps5068\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5068\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4793.azuredatalakeanalytics.net\",\r\n \"accountId\": \"da600a81-ef7a-4634-ab9d-73766754128e\",\r\n \"creationTime\": \"2018-06-19T14:35:14.4003625Z\",\r\n \"lastModifiedTime\": \"2018-06-19T14:35:14.4003625Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793\",\r\n \"name\": \"ps4793\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1215"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -772,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6c1cf844-cb10-48e8-9928-b1dbdbf19d1b"
+ "bc313e7b-b54d-4805-9106-b49cfe5f57b4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14994"
],
"x-ms-correlation-request-id": [
- "a2e21126-85ee-469a-9bd2-f582b70eb0c9"
+ "6c90069b-b39b-4f29-89b5-8271d09c2e6b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040141Z:a2e21126-85ee-469a-9bd2-f582b70eb0c9"
+ "AUSTRALIAEAST:20180619T143548Z:6c90069b-b39b-4f29-89b5-8271d09c2e6b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:40 GMT"
+ "Tue, 19 Jun 2018 14:35:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -811,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a749a2f-b501-45f6-a0a4-cb44fc774d4a"
+ "94e6fc96-9631-4293-bdd3-85bbdc47d08b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7758\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4093.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1b14bae8-4c46-413b-b299-54e441ffac0d\",\r\n \"creationTime\": \"2017-12-07T04:01:10.7889752Z\",\r\n \"lastModifiedTime\": \"2017-12-07T04:01:10.7889752Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093\",\r\n \"name\": \"ps4093\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps5068\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5068\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4793.azuredatalakeanalytics.net\",\r\n \"accountId\": \"da600a81-ef7a-4634-ab9d-73766754128e\",\r\n \"creationTime\": \"2018-06-19T14:35:14.4003625Z\",\r\n \"lastModifiedTime\": \"2018-06-19T14:35:14.4003625Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793\",\r\n \"name\": \"ps4793\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1215"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -844,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a703279e-282c-42c2-aac2-34323f3cf0cf"
+ "1f24ee84-2c64-4a0b-b90c-ae3c574a409a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14993"
],
"x-ms-correlation-request-id": [
- "c0c1da1d-b4ad-4ae3-8f17-d200bde2f58e"
+ "3e518fa7-4851-4ffa-878a-692e1d48d64e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040142Z:c0c1da1d-b4ad-4ae3-8f17-d200bde2f58e"
+ "AUSTRALIAEAST:20180619T143550Z:3e518fa7-4851-4ffa-878a-692e1d48d64e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:42 GMT"
+ "Tue, 19 Jun 2018 14:35:49 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -883,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe1350ec-6943-4233-8fc5-75efea90ba51"
+ "432dc6ce-1f2b-4a40-a66c-a283d4ba46f4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7758\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4093.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1b14bae8-4c46-413b-b299-54e441ffac0d\",\r\n \"creationTime\": \"2017-12-07T04:01:10.7889752Z\",\r\n \"lastModifiedTime\": \"2017-12-07T04:01:10.7889752Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093\",\r\n \"name\": \"ps4093\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps5068\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5068\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4793.azuredatalakeanalytics.net\",\r\n \"accountId\": \"da600a81-ef7a-4634-ab9d-73766754128e\",\r\n \"creationTime\": \"2018-06-19T14:35:14.4003625Z\",\r\n \"lastModifiedTime\": \"2018-06-19T14:35:14.4003625Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793\",\r\n \"name\": \"ps4793\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1215"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -916,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6ceffa1d-b334-466d-ada4-00952abc1bc3"
+ "aab78777-0143-4edd-ac09-5a2efe188914"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14999"
],
"x-ms-correlation-request-id": [
- "ea853899-998d-4291-8868-6ee451c8fd4d"
+ "cdecfb22-0cfd-4e10-bafe-c3c9006940c1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040740Z:ea853899-998d-4291-8868-6ee451c8fd4d"
+ "AUSTRALIAEAST:20180619T144215Z:cdecfb22-0cfd-4e10-bafe-c3c9006940c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:40 GMT"
+ "Tue, 19 Jun 2018 14:42:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -955,28 +955,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "595c72e9-ce95-4433-b43d-5b52eefa0467"
+ "d29e355f-a4eb-4044-9640-6b401d45700c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4093' under resource group 'ps929' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4793' under resource group 'ps4059' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "152"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -991,49 +991,52 @@
"gateway"
],
"x-ms-request-id": [
- "949b0899-a3f5-45bb-a714-9916162a4ff5"
+ "d1563c03-e861-415b-9688-b908930ef25a"
],
"x-ms-correlation-request-id": [
- "949b0899-a3f5-45bb-a714-9916162a4ff5"
+ "d1563c03-e861-415b-9688-b908930ef25a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040745Z:949b0899-a3f5-45bb-a714-9916162a4ff5"
+ "AUSTRALIAEAST:20180619T144222Z:d1563c03-e861-415b-9688-b908930ef25a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:45 GMT"
+ "Tue, 19 Jun 2018 14:42:21 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "effe4381-9eb7-4784-8edf-8abf111b368d"
+ "891e0c17-2d3f-4836-8e35-268b87b33d34"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4093' under resource group 'ps929' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4793' under resource group 'ps4059' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "152"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1048,55 +1051,58 @@
"gateway"
],
"x-ms-request-id": [
- "b5c0ff0c-335d-4d60-9b2e-b45e65c7f0a1"
+ "61633afa-f55c-47d0-9a36-1f2e03a8bcff"
],
"x-ms-correlation-request-id": [
- "b5c0ff0c-335d-4d60-9b2e-b45e65c7f0a1"
+ "61633afa-f55c-47d0-9a36-1f2e03a8bcff"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040746Z:b5c0ff0c-335d-4d60-9b2e-b45e65c7f0a1"
+ "AUSTRALIAEAST:20180619T144222Z:61633afa-f55c-47d0-9a36-1f2e03a8bcff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:45 GMT"
+ "Tue, 19 Jun 2018 14:42:22 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7758\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5068\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps5068\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "88a66f82-da96-46f3-8979-078482d028ce"
+ "a06116c1-5af2-4cce-ae7e-54eebbf39135"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7758\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"1b14bae8-4c46-413b-b299-54e441ffac0d\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093\",\r\n \"name\": \"ps4093\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5068\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5068\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"da600a81-ef7a-4634-ab9d-73766754128e\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793\",\r\n \"name\": \"ps4793\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "488"
+ "487"
],
"Content-Type": [
"application/json"
@@ -1111,37 +1117,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/1b14bae8-4c46-413b-b299-54e441ffac0d0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/da600a81-ef7a-4634-ab9d-73766754128e0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "d68ccd0d-4f1c-4551-8de7-b000d6be44a6"
+ "10816cad-ba7e-4141-9229-b6f2377e5638"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-correlation-request-id": [
- "8e75cc38-308c-479f-8086-abdaa7009913"
+ "49f365b0-d926-4205-bf9f-ff14ead6969d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040108Z:8e75cc38-308c-479f-8086-abdaa7009913"
+ "AUSTRALIAEAST:20180619T143512Z:49f365b0-d926-4205-bf9f-ff14ead6969d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:08 GMT"
+ "Tue, 19 Jun 2018 14:35:12 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1156,16 +1159,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/1b14bae8-4c46-413b-b299-54e441ffac0d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xYjE0YmFlOC00YzQ2LTQxM2ItYjI5OS01NGU0NDFmZmFjMGQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/da600a81-ef7a-4634-ab9d-73766754128e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9kYTYwMGE4MS1lZjdhLTQ2MzQtYWI5ZC03Mzc2Njc1NDEyOGUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1183,31 +1186,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0250145c-739f-497b-9dd8-d8c11bc46177"
+ "172986f0-67c0-419c-82b6-e2dc77fff0d2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14997"
],
"x-ms-correlation-request-id": [
- "b62eed23-ce4c-425c-868b-c0ac4648ba0d"
+ "ea0cb170-a288-48e3-be3e-e66e4b11db6f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040119Z:b62eed23-ce4c-425c-868b-c0ac4648ba0d"
+ "AUSTRALIAEAST:20180619T143524Z:ea0cb170-a288-48e3-be3e-e66e4b11db6f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:19 GMT"
+ "Tue, 19 Jun 2018 14:35:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1222,16 +1222,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/1b14bae8-4c46-413b-b299-54e441ffac0d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xYjE0YmFlOC00YzQ2LTQxM2ItYjI5OS01NGU0NDFmZmFjMGQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/da600a81-ef7a-4634-ab9d-73766754128e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9kYTYwMGE4MS1lZjdhLTQ2MzQtYWI5ZC03Mzc2Njc1NDEyOGUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1249,31 +1249,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8c51bcc7-8e8a-48b8-a13b-b139d861360e"
+ "902237d1-c6f7-4857-8ef3-7e72ce763ea4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14996"
],
"x-ms-correlation-request-id": [
- "3319a53c-435b-4112-a6d2-8e29e3db2847"
+ "c57815b4-dede-4a6f-992c-264aecd37299"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040130Z:3319a53c-435b-4112-a6d2-8e29e3db2847"
+ "AUSTRALIAEAST:20180619T143535Z:c57815b4-dede-4a6f-992c-264aecd37299"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:29 GMT"
+ "Tue, 19 Jun 2018 14:35:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1288,16 +1285,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/1b14bae8-4c46-413b-b299-54e441ffac0d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xYjE0YmFlOC00YzQ2LTQxM2ItYjI5OS01NGU0NDFmZmFjMGQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/da600a81-ef7a-4634-ab9d-73766754128e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9kYTYwMGE4MS1lZjdhLTQ2MzQtYWI5ZC03Mzc2Njc1NDEyOGUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1315,31 +1312,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8c1b8282-b7ca-45cb-a229-0611d8ce38b0"
+ "e4758cef-4d93-49ba-89c0-40eb4e9fda76"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14995"
],
"x-ms-correlation-request-id": [
- "293bf0ac-6503-450c-9ba6-38625669d895"
+ "39bf4379-82a1-41c7-a827-a2fef5f2367c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040140Z:293bf0ac-6503-450c-9ba6-38625669d895"
+ "AUSTRALIAEAST:20180619T143547Z:39bf4379-82a1-41c7-a827-a2fef5f2367c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:01:39 GMT"
+ "Tue, 19 Jun 2018 14:35:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1354,31 +1348,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\r\\n\\tCREATE TABLE ps14.dbo.ps1002\\r\\n\\t(\\r\\n\\t\\t\\t//Define schema of table\\r\\n\\t\\t\\tUserId int, \\r\\n\\t\\t\\tStart DateTime, \\r\\n\\t\\t\\tRegion string, \\r\\n\\t\\t\\tQuery string, \\r\\n\\t\\t\\tDuration int, \\r\\n\\t\\t\\tUrls string, \\r\\n\\t\\t\\tClickedUrls string,\\r\\n\\t\\tINDEX idx1 //Name of index\\r\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\r\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n\\t);\\r\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\r\\n\\r\\n\\t//create table weblogs on space-delimited website log data\\r\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\r\\n\\tRETURNS @result TABLE\\r\\n\\t(\\r\\n\\t\\ts_date DateTime,\\r\\n\\t\\ts_time string,\\r\\n\\t\\ts_sitename string,\\r\\n\\t\\tcs_method string, \\r\\n\\t\\tcs_uristem string,\\r\\n\\t\\tcs_uriquery string,\\r\\n\\t\\ts_port int,\\r\\n\\t\\tcs_username string, \\r\\n\\t\\tc_ip string,\\r\\n\\t\\tcs_useragent string,\\r\\n\\t\\tcs_cookie string,\\r\\n\\t\\tcs_referer string, \\r\\n\\t\\tcs_host string,\\r\\n\\t\\tsc_status int,\\r\\n\\t\\tsc_substatus int,\\r\\n\\t\\tsc_win32status int, \\r\\n\\t\\tsc_bytes int,\\r\\n\\t\\tcs_bytes int,\\r\\n\\t\\ts_timetaken int\\r\\n\\t)\\r\\n\\tAS\\r\\n\\tBEGIN\\r\\n\\r\\n\\t\\t@result = EXTRACT\\r\\n\\t\\t\\ts_date DateTime,\\r\\n\\t\\t\\ts_time string,\\r\\n\\t\\t\\ts_sitename string,\\r\\n\\t\\t\\tcs_method string,\\r\\n\\t\\t\\tcs_uristem string,\\r\\n\\t\\t\\tcs_uriquery string,\\r\\n\\t\\t\\ts_port int,\\r\\n\\t\\t\\tcs_username string,\\r\\n\\t\\t\\tc_ip string,\\r\\n\\t\\t\\tcs_useragent string,\\r\\n\\t\\t\\tcs_cookie string,\\r\\n\\t\\t\\tcs_referer string,\\r\\n\\t\\t\\tcs_host string,\\r\\n\\t\\t\\tsc_status int,\\r\\n\\t\\t\\tsc_substatus int,\\r\\n\\t\\t\\tsc_win32status int,\\r\\n\\t\\t\\tsc_bytes int,\\r\\n\\t\\t\\tcs_bytes int,\\r\\n\\t\\t\\ts_timetaken int\\r\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\r\\n\\r\\n\\tRETURN;\\r\\n\\tEND;\\r\\n\\tCREATE VIEW ps14.dbo.ps2717 \\r\\n\\tAS \\r\\n\\t\\tSELECT * FROM \\r\\n\\t\\t(\\r\\n\\t\\t\\tVALUES(1,2),(2,4)\\r\\n\\t\\t) \\r\\n\\tAS \\r\\n\\tT(a, b);\\r\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\r\\n\\tAS BEGIN\\r\\n\\t CREATE VIEW ps14.dbo.ps2717 \\r\\n\\t AS \\r\\n\\t\\tSELECT * FROM \\r\\n\\t\\t(\\r\\n\\t\\t\\tVALUES(1,2),(2,4)\\r\\n\\t\\t) \\r\\n\\t AS \\r\\n\\t T(a, b);\\r\\n\\tEND;\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\r\\n\\tCREATE TABLE ps7846.dbo.ps8665\\r\\n\\t(\\r\\n\\t\\t\\t//Define schema of table\\r\\n\\t\\t\\tUserId int, \\r\\n\\t\\t\\tStart DateTime, \\r\\n\\t\\t\\tRegion string, \\r\\n\\t\\t\\tQuery string, \\r\\n\\t\\t\\tDuration int, \\r\\n\\t\\t\\tUrls string, \\r\\n\\t\\t\\tClickedUrls string,\\r\\n\\t\\tINDEX idx1 //Name of index\\r\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\r\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n\\t);\\r\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\r\\n\\r\\n\\t//create table weblogs on space-delimited website log data\\r\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\r\\n\\tRETURNS @result TABLE\\r\\n\\t(\\r\\n\\t\\ts_date DateTime,\\r\\n\\t\\ts_time string,\\r\\n\\t\\ts_sitename string,\\r\\n\\t\\tcs_method string, \\r\\n\\t\\tcs_uristem string,\\r\\n\\t\\tcs_uriquery string,\\r\\n\\t\\ts_port int,\\r\\n\\t\\tcs_username string, \\r\\n\\t\\tc_ip string,\\r\\n\\t\\tcs_useragent string,\\r\\n\\t\\tcs_cookie string,\\r\\n\\t\\tcs_referer string, \\r\\n\\t\\tcs_host string,\\r\\n\\t\\tsc_status int,\\r\\n\\t\\tsc_substatus int,\\r\\n\\t\\tsc_win32status int, \\r\\n\\t\\tsc_bytes int,\\r\\n\\t\\tcs_bytes int,\\r\\n\\t\\ts_timetaken int\\r\\n\\t)\\r\\n\\tAS\\r\\n\\tBEGIN\\r\\n\\r\\n\\t\\t@result = EXTRACT\\r\\n\\t\\t\\ts_date DateTime,\\r\\n\\t\\t\\ts_time string,\\r\\n\\t\\t\\ts_sitename string,\\r\\n\\t\\t\\tcs_method string,\\r\\n\\t\\t\\tcs_uristem string,\\r\\n\\t\\t\\tcs_uriquery string,\\r\\n\\t\\t\\ts_port int,\\r\\n\\t\\t\\tcs_username string,\\r\\n\\t\\t\\tc_ip string,\\r\\n\\t\\t\\tcs_useragent string,\\r\\n\\t\\t\\tcs_cookie string,\\r\\n\\t\\t\\tcs_referer string,\\r\\n\\t\\t\\tcs_host string,\\r\\n\\t\\t\\tsc_status int,\\r\\n\\t\\t\\tsc_substatus int,\\r\\n\\t\\t\\tsc_win32status int,\\r\\n\\t\\t\\tsc_bytes int,\\r\\n\\t\\t\\tcs_bytes int,\\r\\n\\t\\t\\ts_timetaken int\\r\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\r\\n\\r\\n\\tRETURN;\\r\\n\\tEND;\\r\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\r\\n\\tAS \\r\\n\\t\\tSELECT * FROM \\r\\n\\t\\t(\\r\\n\\t\\t\\tVALUES(1,2),(2,4)\\r\\n\\t\\t) \\r\\n\\tAS \\r\\n\\tT(a, b);\\r\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\r\\n\\tAS BEGIN\\r\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\r\\n\\t AS \\r\\n\\t\\tSELECT * FROM \\r\\n\\t\\t(\\r\\n\\t\\t\\tVALUES(1,2),(2,4)\\r\\n\\t\\t) \\r\\n\\t AS \\r\\n\\t T(a, b);\\r\\n\\tEND;\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2402"
+ "2420"
],
"x-ms-client-request-id": [
- "2ba4adf4-e192-4845-96d6-765b3575943d"
+ "9009e2b0-97e3-40c5-96cc-202ae0e60593"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1390,7 +1384,7 @@
"chunked"
],
"x-ms-request-id": [
- "8a0e64b6-4377-4b89-ad9e-4b427d86ff99"
+ "be131bfa-e503-44f0-b982-f4bf0551ba1f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1402,31 +1396,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:06:45 GMT"
+ "Tue, 19 Jun 2018 14:40:51 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65752711-6ff7-4e08-8b13-ccd6b3914a71"
+ "4b97fd84-0715-4c5f-a73f-134da741ea7d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T20:06:46.3767059-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\n\\tCREATE TABLE ps14.dbo.ps1002\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.3555637S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.5678876S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1438,7 +1432,7 @@
"chunked"
],
"x-ms-request-id": [
- "6dcdff99-5a22-422a-a2c5-58ccf823a35e"
+ "f6268773-3619-4725-b11e-5a0f8c297373"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1450,31 +1444,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:06:46 GMT"
+ "Tue, 19 Jun 2018 14:40:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21779506-daf3-4783-a214-35b00bf0cd5a"
+ "ea7a4175-33e1-4766-a03c-fc02e0d1c48f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T20:06:46.3767059-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\n\\tCREATE TABLE ps14.dbo.ps1002\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.090002S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.2055701S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1486,7 +1480,7 @@
"chunked"
],
"x-ms-request-id": [
- "df0f4da1-8aaa-481e-bd87-c7ff208ccb72"
+ "03a5dda9-0261-4b5f-a1c6-af9ac06ad57e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1498,31 +1492,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:06:52 GMT"
+ "Tue, 19 Jun 2018 14:40:53 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f79cd8e-bcc6-4a7d-8f7b-a27bcb3af200"
+ "e9871fba-f76b-4497-a7ae-2c8534beb0c9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T20:06:46.3767059-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\n\\tCREATE TABLE ps14.dbo.ps1002\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.2776148S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.7767218S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1534,7 +1528,7 @@
"chunked"
],
"x-ms-request-id": [
- "5570165a-f0c2-401e-9cd1-520914d5c848"
+ "adc5fdc8-5d45-4507-b52f-d9edc7b90a8c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1546,31 +1540,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:06:57 GMT"
+ "Tue, 19 Jun 2018 14:40:53 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6564bc8-9b14-43bb-980b-0298b7d31aa7"
+ "3210dc16-37a0-4c0d-a398-23538146a60a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T20:06:46.3767059-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2363662-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2519843-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:0a32e134-4ad5-49bb-9915-b9797dc19f84\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2676066-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"0a32e134-4ad5-49bb-9915-b9797dc19f84\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\n\\tCREATE TABLE ps14.dbo.ps1002\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"yarnApplicationId\": 1034078,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.8596603S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156181S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.2837312S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1582,7 +1576,7 @@
"chunked"
],
"x-ms-request-id": [
- "76396e18-efc0-469c-8cbf-90098330adc7"
+ "bd459467-5401-49aa-97b8-dcebe5095ca6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1594,31 +1588,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:02 GMT"
+ "Tue, 19 Jun 2018 14:40:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "73389344-4c8b-4ed5-a3c5-9979c42b4a2c"
+ "b1a05960-657f-4db9-b68c-5a409c4f5942"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"startTime\": \"2017-12-06T20:07:08.2990638-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T20:06:46.3767059-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2363662-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2519843-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:0a32e134-4ad5-49bb-9915-b9797dc19f84\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2676066-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T20:07:08.2990638-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"0a32e134-4ad5-49bb-9915-b9797dc19f84\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\n\\tCREATE TABLE ps14.dbo.ps1002\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"yarnApplicationId\": 1034078,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.8596603S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156181S\",\r\n \"totalRunningTime\": \"PT0.0668858S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.7085582S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1630,7 +1624,7 @@
"chunked"
],
"x-ms-request-id": [
- "5dbfdc30-e1f9-40a9-8039-9a982cf980a5"
+ "db9dbafb-fde3-4ab3-8a7a-ff0c86e62620"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1642,31 +1636,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:07 GMT"
+ "Tue, 19 Jun 2018 14:40:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2d833ff-fd89-48c1-805c-d78261e2dd0e"
+ "576d86f9-d0d6-48cc-a70d-1159911ab713"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"startTime\": \"2017-12-06T20:07:08.2990638-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T20:06:46.3767059-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2363662-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2519843-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:0a32e134-4ad5-49bb-9915-b9797dc19f84\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2676066-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T20:07:08.2990638-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"0a32e134-4ad5-49bb-9915-b9797dc19f84\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\n\\tCREATE TABLE ps14.dbo.ps1002\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"yarnApplicationId\": 1034078,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.8596603S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156181S\",\r\n \"totalRunningTime\": \"PT5.2773674S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.0181129S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1678,7 +1672,7 @@
"chunked"
],
"x-ms-request-id": [
- "6816e721-b46c-4012-8d56-daace06fa83d"
+ "01fc483c-d7e4-4bcc-be30-e1853c283471"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1690,31 +1684,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:12 GMT"
+ "Tue, 19 Jun 2018 14:40:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3a32baa-0db4-416e-80b2-5653125ede7c"
+ "63d12ad9-869f-4a92-97c4-8ca5df848ddd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"startTime\": \"2017-12-06T20:07:08.2990638-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T20:06:46.3767059-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2363662-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2519843-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:0a32e134-4ad5-49bb-9915-b9797dc19f84\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2676066-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T20:07:08.2990638-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"0a32e134-4ad5-49bb-9915-b9797dc19f84\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\n\\tCREATE TABLE ps14.dbo.ps1002\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"yarnApplicationId\": 1034078,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.8596603S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156181S\",\r\n \"totalRunningTime\": \"PT10.5430775S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.4741679S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1726,7 +1720,7 @@
"chunked"
],
"x-ms-request-id": [
- "2fafbe09-1030-4408-9242-5c4c0221d7a9"
+ "d2a80860-5c1d-426a-8af0-1ef0618ec979"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1738,31 +1732,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:18 GMT"
+ "Tue, 19 Jun 2018 14:40:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/f68f45f0-acaf-4301-be48-8d310e993260?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjY4ZjQ1ZjAtYWNhZi00MzAxLWJlNDgtOGQzMTBlOTkzMjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "130701ea-55ef-442c-8efe-232eaa693b3b"
+ "1f2e294a-8b5b-4a8d-9d7b-8788cd016876"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"f68f45f0-acaf-4301-be48-8d310e993260\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"startTime\": \"2017-12-06T20:07:08.2990638-08:00\",\r\n \"endTime\": \"2017-12-06T20:07:18.8461728-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T20:06:45.8923055-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T20:06:46.3767059-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2363662-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2519843-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:0a32e134-4ad5-49bb-9915-b9797dc19f84\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T20:06:59.2676066-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T20:07:08.2990638-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-12-06T20:07:18.8461728-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"0a32e134-4ad5-49bb-9915-b9797dc19f84\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps14; CREATE DATABASE ps14;\\n\\tCREATE TABLE ps14.dbo.ps1002\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps14.dbo.ps1002 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps14.dbo.ps9560;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps7758.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/04/06/f68f45f0-acaf-4301-be48-8d310e993260/algebra.xml\",\r\n \"yarnApplicationId\": 1034078,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.8596603S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156181S\",\r\n \"totalRunningTime\": \"PT10.547109S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.8618795S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1774,7 +1768,7 @@
"chunked"
],
"x-ms-request-id": [
- "4b112844-2e9c-4f0e-bfdb-28aef1c031cf"
+ "ab1866c4-e884-4b5d-a9de-e69269cb9e11"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1786,34 +1780,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:24 GMT"
+ "Tue, 19 Jun 2018 14:40:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "217d4b09-f612-441c-8a46-c7fb584b4692"
+ "bdf60f77-ad63-4469-87b8-6ef87dcf88c3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"a5ccab1e-5f4e-4dee-9cad-8d12903192d2\"\r\n },\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"version\": \"23afb7b1-4d07-4a70-8740-c3cb06d9cba5\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.3082158S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1822,10 +1816,7 @@
"chunked"
],
"x-ms-request-id": [
- "53c03a18-1ee5-40b6-b450-8c32822a0850"
- ],
- "OData-Version": [
- "4.0"
+ "a8afad29-46ac-41ec-824d-213d20a4b3ea"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1837,34 +1828,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:24 GMT"
+ "Tue, 19 Jun 2018 14:40:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fbec2dd4-d636-4755-a4f4-bd6024f5ea6d"
+ "ff572ea6-6508-44bc-ada6-4aebe6ba1f54"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"version\": \"23afb7b1-4d07-4a70-8740-c3cb06d9cba5\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.7614425S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1873,10 +1864,7 @@
"chunked"
],
"x-ms-request-id": [
- "fd669bf9-fd04-484d-83c0-c431ec55b1b5"
- ],
- "OData-Version": [
- "4.0"
+ "a3733be4-dba5-4729-888d-d069a16867c7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1888,34 +1876,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:24 GMT"
+ "Tue, 19 Jun 2018 14:40:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/tables?basic=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby90YWJsZXM/YmFzaWM9ZmFsc2UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ef0fd6c-bd5a-4a8c-a38d-3ecbfbbe9220"
+ "2389212c-dc47-4292-b22a-0aa02b59d4b0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"ps1002\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"ca5d3fd5-5fd7-4954-912a-57c0641bb490\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"681cd23c-206a-4abe-aeaa-e919f8028643\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.0650474S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1924,10 +1912,7 @@
"chunked"
],
"x-ms-request-id": [
- "dec94bf9-702a-4961-bc0f-a43ac7bd0af0"
- ],
- "OData-Version": [
- "4.0"
+ "0be9cce5-2d18-4ba2-b728-fb76f75b6cb2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1939,34 +1924,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:24 GMT"
+ "Tue, 19 Jun 2018 14:40:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/tables?basic=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC90YWJsZXM/YmFzaWM9ZmFsc2UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e76e2450-93c6-49da-a11f-f62c923c5485"
+ "4904247a-7ef6-42a1-8c47-3b1d7e44e9c6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"ps1002\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"ca5d3fd5-5fd7-4954-912a-57c0641bb490\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"681cd23c-206a-4abe-aeaa-e919f8028643\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5181514S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1975,10 +1960,7 @@
"chunked"
],
"x-ms-request-id": [
- "890abe45-4899-45a3-914e-e451d77267f8"
- ],
- "OData-Version": [
- "4.0"
+ "a32d08ed-48eb-4e38-8885-a8e7b94695d4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1990,34 +1972,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:25 GMT"
+ "Tue, 19 Jun 2018 14:40:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/tables/ps1002?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby90YWJsZXMvcHMxMDAyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "61737636-9faa-4b60-bcf2-c8dfef53aaad"
+ "a4ca7f17-c3df-4646-abcb-299f300339ec"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"ps1002\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"ca5d3fd5-5fd7-4954-912a-57c0641bb490\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"681cd23c-206a-4abe-aeaa-e919f8028643\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.8931775S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2026,10 +2008,7 @@
"chunked"
],
"x-ms-request-id": [
- "db81e246-9621-49b7-b06b-275c0e93dae9"
- ],
- "OData-Version": [
- "4.0"
+ "43b49833-df48-485b-9a63-c1fd7cf19f1f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2041,34 +2020,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:25 GMT"
+ "Tue, 19 Jun 2018 14:40:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/tables/ps1002/partitions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby90YWJsZXMvcHMxMDAyL3BhcnRpdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7802f1ef-e4ce-4f98-8aee-82faf2e638e8"
+ "69edd399-47e0-4aa9-a77d-0c04889822f7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"ps1002_Partition_57862b91-889e-4c41-bfd1-d48072b429da\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2017-12-07T04:07:13.437-08:00\",\r\n \"parentName\": {\r\n \"server\": \"1b14bae8-4c46-413b-b299-54e441ffac0d\",\r\n \"firstPart\": \"ps14\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"ps1002\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"f4c83881-5647-48e2-b5e9-b17d2411883f\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.6733456S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2077,10 +2056,7 @@
"chunked"
],
"x-ms-request-id": [
- "7a40120b-282f-4d08-ad26-a40c8b374e1d"
- ],
- "OData-Version": [
- "4.0"
+ "06e52331-e0fd-4aa0-afb0-04dec39c96e0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2092,34 +2068,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:25 GMT"
+ "Tue, 19 Jun 2018 14:41:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/tables/ps1002/partitions/ps1002_Partition_57862b91-889e-4c41-bfd1-d48072b429da?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby90YWJsZXMvcHMxMDAyL3BhcnRpdGlvbnMvcHMxMDAyX1BhcnRpdGlvbl81Nzg2MmI5MS04ODllLTRjNDEtYmZkMS1kNDgwNzJiNDI5ZGE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96a4282e-9613-4877-b43b-d86777eeae93"
+ "694368af-8654-4cac-971b-87efc84c1b03"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"ps1002_Partition_57862b91-889e-4c41-bfd1-d48072b429da\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2017-12-07T04:07:13.437-08:00\",\r\n \"parentName\": {\r\n \"server\": \"1b14bae8-4c46-413b-b299-54e441ffac0d\",\r\n \"firstPart\": \"ps14\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"ps1002\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"f4c83881-5647-48e2-b5e9-b17d2411883f\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.158855S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2128,10 +2104,7 @@
"chunked"
],
"x-ms-request-id": [
- "d229a8d9-b740-45a5-8556-31bbe42e0438"
- ],
- "OData-Version": [
- "4.0"
+ "c07a2382-0b24-4b8e-b573-010653f60c0c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2143,34 +2116,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:25 GMT"
+ "Tue, 19 Jun 2018 14:41:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby90YWJsZXZhbHVlZGZ1bmN0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b61f6224-f8e9-456f-a75a-b86ef3de09d2"
+ "95f680bd-8041-4b13-b94a-3532443b58c5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"ps9560\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"version\": \"582b931d-b5e2-472a-ad40-879a8b794d3d\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.6049862S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2179,10 +2152,7 @@
"chunked"
],
"x-ms-request-id": [
- "cc00e5cf-b6e2-4753-95c1-8ada1a804325"
- ],
- "OData-Version": [
- "4.0"
+ "9ae0cc4e-d5ef-4920-b547-742771901c54"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2194,34 +2164,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:26 GMT"
+ "Tue, 19 Jun 2018 14:41:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/tablevaluedfunctions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC90YWJsZXZhbHVlZGZ1bmN0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "029857b3-a439-4562-b5a8-51b02b067f4d"
+ "40fa6085-96ad-4b09-b31a-43db0fd99ff1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"ps9560\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"version\": \"582b931d-b5e2-472a-ad40-879a8b794d3d\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.0210993S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2230,10 +2200,7 @@
"chunked"
],
"x-ms-request-id": [
- "393b08f0-67b1-4bb0-8362-686f30457ad5"
- ],
- "OData-Version": [
- "4.0"
+ "0993c006-5498-40dd-926c-adae609332ef"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2245,34 +2212,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:26 GMT"
+ "Tue, 19 Jun 2018 14:41:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/tablevaluedfunctions/ps9560?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby90YWJsZXZhbHVlZGZ1bmN0aW9ucy9wczk1NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d36c5b82-cf80-4f06-9b76-7ae600bf203d"
+ "b6504802-3f00-4ba8-afc0-094fc8dffaf2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"ps9560\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps14.dbo.ps9560()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"version\": \"582b931d-b5e2-472a-ad40-879a8b794d3d\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.4088851S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2281,10 +2248,7 @@
"chunked"
],
"x-ms-request-id": [
- "1545d50d-9b66-4951-b483-16ba234efaf7"
- ],
- "OData-Version": [
- "4.0"
+ "b27e9055-eb0b-4dc8-af88-b4133e20108c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2296,34 +2260,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:26 GMT"
+ "Tue, 19 Jun 2018 14:41:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/procedures?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby9wcm9jZWR1cmVzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3fe4a124-336c-429c-947a-b12b010e0a6a"
+ "ae9a9635-a95e-4041-9665-8ed573b19f9b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"ps2391\",\r\n \"definition\": \"CREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"version\": \"e72d9ba6-6639-4597-b4a6-0fa6487002ee\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.7369995S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2332,10 +2296,7 @@
"chunked"
],
"x-ms-request-id": [
- "7227e316-e3e6-4c38-bfd4-99f98a241df6"
- ],
- "OData-Version": [
- "4.0"
+ "d36ff606-8b22-4eb1-a020-03bf7d696b7e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2347,34 +2308,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:27 GMT"
+ "Tue, 19 Jun 2018 14:41:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/procedures/ps2391?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby9wcm9jZWR1cmVzL3BzMjM5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf8c3352-3ad1-497f-afe8-96670a95329d"
+ "6a2c4b2b-29ad-454c-87e5-415c8bd4ebe1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"ps2391\",\r\n \"definition\": \"CREATE PROCEDURE ps14.dbo.ps2391()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps14.dbo.ps2717 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"version\": \"e72d9ba6-6639-4597-b4a6-0fa6487002ee\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.1432587S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2383,10 +2344,7 @@
"chunked"
],
"x-ms-request-id": [
- "32f6fbb8-de78-41ec-8da5-7c1367f83eb4"
- ],
- "OData-Version": [
- "4.0"
+ "9c1ca6c2-c3e6-486e-bddb-7d9cde575870"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2398,34 +2356,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:27 GMT"
+ "Tue, 19 Jun 2018 14:41:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/views?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby92aWV3cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1016a61c-3923-47bf-b42f-6c39357a11f7"
+ "e5b14ac4-f0b8-45ad-af1a-51672c109ee9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"ps2717\",\r\n \"definition\": \"CREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"version\": \"882099f3-098b-4bf6-b0f3-536e09ef9c12\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.4870367S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2434,10 +2392,7 @@
"chunked"
],
"x-ms-request-id": [
- "f9a6921a-6d23-4a23-9fbf-69449ff632ac"
- ],
- "OData-Version": [
- "4.0"
+ "c5110c60-940f-4b00-b9b7-6140d892761a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2449,34 +2404,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:27 GMT"
+ "Tue, 19 Jun 2018 14:41:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/views?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC92aWV3cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db11360b-9dbd-46a2-a20c-d9e6278cd5ae"
+ "595a96ca-9799-4bc9-865d-22ed90901818"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"ps2717\",\r\n \"definition\": \"CREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"version\": \"882099f3-098b-4bf6-b0f3-536e09ef9c12\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.9488212S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2485,10 +2440,7 @@
"chunked"
],
"x-ms-request-id": [
- "082a775f-3e27-4ff4-8218-795ebe54cffa"
- ],
- "OData-Version": [
- "4.0"
+ "5838b4f5-f740-484f-9feb-b75cfba5aa4f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2500,34 +2452,34 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:27 GMT"
+ "Tue, 19 Jun 2018 14:41:03 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/schemas/dbo/views/ps2717?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zY2hlbWFzL2Riby92aWV3cy9wczI3MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e0b3eae-0469-449a-acbf-0a007ff8b098"
+ "bd6b6d83-83e0-49d1-a936-a86b457397cb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4093.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"computeAccountName\": \"ps4093\",\r\n \"databaseName\": \"ps14\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"ps2717\",\r\n \"definition\": \"CREATE VIEW ps14.dbo.ps2717 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"version\": \"882099f3-098b-4bf6-b0f3-536e09ef9c12\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.2711208S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2536,10 +2488,7 @@
"chunked"
],
"x-ms-request-id": [
- "333a590d-e821-4cf3-8ff1-f095a569b04b"
- ],
- "OData-Version": [
- "4.0"
+ "24ac704f-75a9-421c-8ba3-3a514e69d91d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2551,38 +2500,35 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:28 GMT"
+ "Tue, 19 Jun 2018 14:41:03 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/secrets/ps5005?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zZWNyZXRzL3BzNTAwNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"ps7693\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "69"
- ],
"x-ms-client-request-id": [
- "ea888a25-37fb-498b-8279-64be5156749b"
+ "c57addb9-1a5f-4277-b97f-6b40ef041b1b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5964311S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -2590,7 +2536,7 @@
"chunked"
],
"x-ms-request-id": [
- "d18a1a82-08b0-4bbd-be73-784ed7132759"
+ "2cd53af2-df5c-4cf6-83d4-7e7d4b276c70"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2602,38 +2548,35 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:29 GMT"
+ "Tue, 19 Jun 2018 14:41:03 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/secrets/ps5005dup?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zZWNyZXRzL3BzNTAwNWR1cD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"ps7693\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "69"
- ],
"x-ms-client-request-id": [
- "6e141e3d-9008-4b18-9604-71cf3a1b8e74"
+ "eb42d73b-ae8e-4ba6-b77a-ad2be9046a80"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -2641,7 +2584,7 @@
"chunked"
],
"x-ms-request-id": [
- "e9c06379-2b6e-4d4f-a9d8-e1f7cfc6aa26"
+ "e4a0f843-6637-4a72-92b3-54854cc7c05c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2653,31 +2596,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:30 GMT"
+ "Tue, 19 Jun 2018 14:41:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/secrets/ps5005?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zZWNyZXRzL3BzNTAwNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99dde3da-a1d2-4ed4-be15-bf0ba26fd289"
+ "0f1f4a06-eab7-4031-9faf-88547549fa51"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"creationTime\": \"2017-12-07T04:07:29.2214036Z\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2689,7 +2632,7 @@
"chunked"
],
"x-ms-request-id": [
- "a75eeb85-95d6-43ba-bca7-6efa9fc416eb"
+ "421acbbd-8759-4df3-ae2c-d040444c894a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2701,31 +2644,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:30 GMT"
+ "Tue, 19 Jun 2018 14:41:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/secrets/ps5005?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zZWNyZXRzL3BzNTAwNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "61febfc5-4c27-4382-9d2f-cd29e9a6516e"
+ "f6b83cd8-4fef-4e95-a9c8-f1e7fe8d95af"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps5005' does not exist. Trace: 42946c60-3191-40b0-9843-e43c61fd90e5 Time: 2017-12-06T20:07:38.9269345-08:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2737,7 +2680,7 @@
"chunked"
],
"x-ms-request-id": [
- "42946c60-3191-40b0-9843-e43c61fd90e5"
+ "d88c515b-1f72-4553-b236-9c4361317757"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2749,38 +2692,35 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:38 GMT"
+ "Tue, 19 Jun 2018 14:41:05 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/credentials/ps2419?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9jcmVkZW50aWFscy9wczI0MTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"ps7693\",\r\n \"uri\": \"https://fakedb.contoso.com/\",\r\n \"userId\": \"ps5005\"\r\n}",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "92"
- ],
"x-ms-client-request-id": [
- "557b14a4-a289-413d-8e1e-07b5d959680a"
+ "52095b4b-10ce-4bd2-a675-f74123eae051"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -2788,7 +2728,7 @@
"chunked"
],
"x-ms-request-id": [
- "08633b0c-9a69-45a8-8e4f-a50c02cfacda"
+ "ca2d0ea2-86b3-491c-a3d5-73ec457e0d2e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2800,38 +2740,35 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:32 GMT"
+ "Tue, 19 Jun 2018 14:41:05 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/credentials/ps2419?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9jcmVkZW50aWFscy9wczI0MTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"ps7693\",\r\n \"uri\": \"https://fakedb.contoso.com/\",\r\n \"userId\": \"ps5005\"\r\n}",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "92"
- ],
"x-ms-client-request-id": [
- "6b1b70a1-2323-4fa7-94cd-4f22b8bc950f"
+ "4efe003a-256e-4f9f-bc07-542ae235fe96"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -2839,7 +2776,7 @@
"chunked"
],
"x-ms-request-id": [
- "cbf04eeb-a937-41bc-afd7-1b9157ef716e"
+ "86c0e5d2-4143-4001-8f05-ebf529baf713"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2851,31 +2788,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:35 GMT"
+ "Tue, 19 Jun 2018 14:41:06 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/credentials?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9jcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3348e1e-4574-4777-ba92-4b29b571784a"
+ "e2248c11-e955-4d8a-b1eb-a4cc33f1b00a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"ps2419\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2887,7 +2824,7 @@
"chunked"
],
"x-ms-request-id": [
- "1f64562b-4c70-4524-aef0-f7e0b3dff617"
+ "3c78a5fa-b6b7-40e5-8f5f-70d998fa7b60"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2899,31 +2836,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:32 GMT"
+ "Tue, 19 Jun 2018 14:41:06 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/credentials/ps2419?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9jcmVkZW50aWFscy9wczI0MTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0cc94b46-0008-4a40-b2ef-c842f1bd044b"
+ "53ad9129-caf1-4b9a-ba42-d8f0371afbaa"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"credentialName\": \"ps2419\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2935,7 +2872,7 @@
"chunked"
],
"x-ms-request-id": [
- "6180d358-9679-4457-ac32-8ce87ff5ed77"
+ "c366a0a3-1dc4-41b0-9164-11af44712412"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2947,31 +2884,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:32 GMT"
+ "Tue, 19 Jun 2018 14:41:07 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/credentials/ps2419?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9jcmVkZW50aWFscy9wczI0MTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3eb294f-6053-4f0d-ad7b-6ff696b818d3"
+ "ec1f6b3a-38c5-47f5-8e24-e7948aa10dff"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps2419' does not exist. Trace: ab2d87e8-5a0b-4d29-ad9e-39309a5e2cd6 Time: 2017-12-06T20:07:34.4268960-08:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2983,7 +2920,7 @@
"chunked"
],
"x-ms-request-id": [
- "ab2d87e8-5a0b-4d29-ad9e-39309a5e2cd6"
+ "6949d571-f10e-4890-ba71-295854d20cb5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2995,31 +2932,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:33 GMT"
+ "Tue, 19 Jun 2018 14:41:07 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/credentials/ps2419?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9jcmVkZW50aWFscy9wczI0MTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8010d5e2-16ac-485c-a04c-daf451f044fb"
+ "703ae3d4-7a12-4f3c-8cd2-2edc8795d92e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps2419' does not exist. Trace: b23e085f-402e-4152-ae1c-5d9c817be9be Time: 2017-12-06T20:07:38.1456823-08:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3031,7 +2968,7 @@
"chunked"
],
"x-ms-request-id": [
- "b23e085f-402e-4152-ae1c-5d9c817be9be"
+ "5d0663de-dbaf-434f-b604-e839b9e4f5f0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3043,32 +2980,35 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:37 GMT"
+ "Tue, 19 Jun 2018 14:41:07 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/credentials/ps2419?cascade=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9jcmVkZW50aWFscy9wczI0MTk/Y2FzY2FkZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "POST",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b993ca94-bde9-41f3-9709-312745887fc5"
+ "4b520daf-d3b9-4e7d-aed9-d87aa591f964"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -3076,7 +3016,7 @@
"chunked"
],
"x-ms-request-id": [
- "3c9f7f36-67e6-4a5d-8732-059a2633854e"
+ "16b00c5f-d027-431a-a403-931edfda3345"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3088,32 +3028,35 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:33 GMT"
+ "Tue, 19 Jun 2018 14:41:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/credentials/ps2419?cascade=true&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9jcmVkZW50aWFscy9wczI0MTk/Y2FzY2FkZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "POST",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5febce71-bc78-4b77-9406-f24fdda5667e"
+ "90e9b4a5-8624-46f3-845c-9bea674ca01b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -3121,7 +3064,7 @@
"chunked"
],
"x-ms-request-id": [
- "2af94f9d-570e-41d3-abe5-9439981e392c"
+ "9fcd7c14-0931-477f-bd53-eb30f4eee3b4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3133,32 +3076,35 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:37 GMT"
+ "Tue, 19 Jun 2018 14:41:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/secrets/ps5005?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zZWNyZXRzL3BzNTAwNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eec2c8af-c1f1-43a5-b7b8-a38333521395"
+ "7f762705-715f-4097-acc8-f2d2a61b4565"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -3166,7 +3112,7 @@
"chunked"
],
"x-ms-request-id": [
- "186eb518-c963-4b1d-b225-23d445510c02"
+ "85d0c199-0b40-4f06-b4ea-21f0fdea906d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3178,32 +3124,35 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:38 GMT"
+ "Tue, 19 Jun 2018 14:41:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/secrets?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "633e5b6e-8356-4330-95eb-85d139d2bf0f"
+ "272e4769-8ab9-463a-bc6f-ebbb091c65bb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -3211,7 +3160,7 @@
"chunked"
],
"x-ms-request-id": [
- "c1d56944-122c-4172-8b0a-05712a8bed0e"
+ "86001f93-5507-4fe4-988d-813477f64365"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3223,31 +3172,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:39 GMT"
+ "Tue, 19 Jun 2018 14:41:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/ps14/secrets/ps5005dup?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHMxNC9zZWNyZXRzL3BzNTAwNWR1cD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fbe3099-793b-40a7-b535-01d070bad222"
+ "440ad70e-6733-488f-9ea3-86d1dbc3c5ca"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps5005dup' does not exist. Trace: 5c3d922b-673a-4217-9adf-04aeeee03ffc Time: 2017-12-06T20:07:40.0363133-08:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3259,7 +3208,7 @@
"chunked"
],
"x-ms-request-id": [
- "5c3d922b-673a-4217-9adf-04aeeee03ffc"
+ "f72efdb2-2ff5-4bcc-99a7-59c79fa4347d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3271,100 +3220,5713 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:39 GMT"
+ "Tue, 19 Jun 2018 14:41:09 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeAnalytics/accounts/ps4093?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHM0MDkzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e5d2dd6-126a-459f-9a42-11f23259e8e5"
+ "f8b8173e-aa03-4333-9fc9-7a91ad879863"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "0"
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "9df9a873-7a6a-4ee6-bdff-2b083b661eb6"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "5eace463-b605-4cca-b529-dd5299d76f3a"
+ "bb43a7f7-0f4d-4a6a-93b5-2710f70b4751"
],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T040745Z:5eace463-b605-4cca-b529-dd5299d76f3a"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:44 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Tue, 19 Jun 2018 14:41:10 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps929/providers/Microsoft.DataLakeStore/accounts/ps7758?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "DELETE",
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "45d9a980-3d0f-46d9-adc3-dc286d3f4ec0"
+ "d0d759e0-b03e-4a48-b8e8-3013b21b37e4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "0"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "fef3c63b-fb2f-417a-a663-9831c95e63b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:10 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d4e5d9f7-b99e-463b-96ca-961db0515a0f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "755a37b2-9cf0-43a5-81fe-b970d465e99a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6de0694-1e12-488a-b46c-023a750e2b1d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a621f72b-8970-497b-9034-3a916f9ef0d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9c54759-55c5-4058-bd83-a5619fb42df9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0.1831267S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8ed7f086-3224-4f59-8e9c-d79698465957"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88746328-45c8-4057-b506-db849b7793d0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0.549496S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e202d964-a488-45e1-b2f0-6fa6b6a86e6f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7cb85305-58ed-492b-8a21-ccb9c2f01d20"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT0.8803481S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a9f2920b-f952-41a7-ad79-c2b71f6618c0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "24363be5-1e9f-4e2d-8946-5caebf0f2e68"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT1.2926745S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "79d4282b-75a5-44e9-874b-0a4b1157c1bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f48df09e-ebc3-4f2d-816f-6032b17b2fdb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT1.6989105S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5152ffaa-9338-4f4b-b6ac-1fc9ac7ecb3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "91823516-467a-4b5f-bf4e-219ad6073283"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT2.1303797S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bed21c41-c441-4804-abdb-fc0b13956075"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b25dbcf-6260-491d-a55e-d5b2ff8f86a1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT2.4897625S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f0165117-8bf9-4ac3-8f22-0c8f869280e2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a0329f90-45a3-4176-a18e-9201cb4b41aa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT2.8394407S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9bb442e9-c29a-4b7b-8cb7-4539eecbd8cf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f906394b-a595-4833-929e-a7bd4528468d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT3.192889S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4fc06fde-62b4-4626-9059-9832983bdae3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a85e778d-5bc0-448f-8c0a-418e302d4ee6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT3.714572S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "55e5cb30-60a5-4fd6-9034-8b3419fb97c3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6e3dd426-f141-4ceb-8962-6ee9b320c590"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT4.2457444S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "00cf3011-05e4-4430-aa6a-36234ba40f3f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "481acae8-09db-43e9-b458-6cfa9075e54c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT4.6207531S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6d0db8fa-7cf3-4e10-9ea7-6e671a11e432"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "757de5b3-09d4-4d24-92aa-aa9715cc07d8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT5.0496235S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b960eb13-e689-45e5-962a-358e872db151"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "68a621e7-42a3-47bd-a13d-e75cf76f2a6e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT5.4021249S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "69485ad0-c7b3-48ef-a550-d3eea98e2908"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:17 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f07a8d59-5aa5-40f7-b135-cd089e623ee2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT6.5496528S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a28f29b5-6074-4f00-b874-c965817cc429"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f2244609-a983-4ece-aa88-6227960de392"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT7.0835362S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c70c81ca-6971-4985-98e0-57d08b0615de"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "034bb377-5bb4-49f0-85bc-134c80e022aa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT7.5809096S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0588ced1-8523-410d-a268-a7f0239b57ab"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0c6daebb-4f8b-428b-868f-16cb5300be01"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT8.0115439S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "21208751-a644-4945-88ce-b64f64fab267"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2d8f405-150c-4600-a31d-c0d38941affa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT8.5895967S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "71545699-cfa5-4871-b515-ec6547022db6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2ddeaacb-4e74-48a8-a9c9-078d35a45e27"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT8.9898039S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "708c2f76-f84d-4535-bb6e-435991804457"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dd944af6-963f-4d81-8554-e6889ebb0009"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT9.4021177S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "69785ffa-2db9-4138-ac43-5c0f8251e675"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5fa98709-4150-4e30-9cf4-7b8ed4dcf6ce"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT9.9021245S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4b72f316-88f1-4f08-9ea0-b5594d22f662"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:21 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c9947d01-c10c-4e2a-a9dd-77ed99199120"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT10.2771179S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "28f960fe-cb3b-4c34-9e37-2fb70b70fd85"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:21 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1e21a1d7-3bb6-43df-90f7-538f301d3351"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT10.6521472S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "cb80144f-dd74-43cc-aaa8-9e30162fde3b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "be4095f0-0a36-49f1-9d17-078fefec025b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT11.0428479S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d5621ecd-5be4-4897-b42b-3390ba2e8208"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2db3e7cd-797c-4f5f-b12d-9a089ca776fe"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT11.4117029S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d35da0dd-a1b7-4e62-a8d2-cd2ca628d59d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "569643d6-8668-4421-87c9-5b1b924aa962"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT11.8240472S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b983d37c-56a1-4e97-a2b9-ab9f6d4b3deb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9de3e1d8-23a8-4f89-af7e-d22ba7f14049"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT12.2146596S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "71ac06b8-34d3-4abb-a14e-ad79412b9ac0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3895d6a4-dd60-4264-b66d-2f7735abc613"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT12.6122752S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "fe7ec7f3-01e0-4e30-a4e6-0c1a44215036"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff1815c0-2d6f-4d88-8489-8bab3c772a5f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT13.0029305S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9fc2ab54-947c-42b0-a08c-d3e5b9232ecc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:24 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "44ff666b-d053-4fde-b551-e75876a34195"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT13.4560712S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "237e271c-4249-41e3-8de4-fb99f1b827b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:24 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8a60e191-8306-45e0-9aea-366495ab7a24"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT13.9117532S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "71c67997-b3cc-49b8-8424-51b008c0ddfd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff8744fe-5819-40ff-8ca7-0db1a4d571a8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT14.4117525S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "de0895c2-56c4-48bb-8c21-cecc056dd439"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0de2dcd-75b1-4747-b31a-603051625dd6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT14.771132S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5ba11a5b-de9e-47d5-9859-c6a65545662f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20ec504b-3d70-4471-b40f-1a3d9dea4604"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT15.1366041S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e5d99f94-12de-4ef1-a332-4ec233089ca4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "443e6844-2063-40c7-8e7e-db21cacfbf04"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT15.5523921S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b9a3ce87-9c45-4cc8-a2e8-ca9458f7b3ea"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "36ff9c79-8c90-439f-95e1-5e56810fa57d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT15.9273739S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c01b7875-c164-457b-b514-a49bd4ac7728"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "00ead86e-f430-4431-924c-713753da09f4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT16.4117709S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "077da579-009e-46c2-9c65-8a9068fb1db9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e7401755-9352-4d11-81ee-6f3e95f5aaa3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT16.902293S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "20d1a2c7-a6d5-426a-8ab7-1c2135b26218"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:28 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f802637e-5357-4ded-87da-15f230272ff3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT17.3397847S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "abe38371-bc3d-421b-8a9a-314d7036ab9f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:28 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4237d4d2-9981-4503-b93c-5fabec9bfb68"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT17.7711597S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0cac6c82-7d9e-4762-a67e-a6d3768c2b06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0913b127-9a29-4c3d-a630-f5a4f1ef9134"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT18.1679869S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5029c470-bbd2-426e-9aa8-e82bee8f6ddd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/jobs/f1161f72-d1a8-43d2-8aa1-720982496db1?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjExNjFmNzItZDFhOC00M2QyLThhYTEtNzIwOTgyNDk2ZGIxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "621366b7-d673-4dbb-b817-e48f5be241e0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1161f72-d1a8-43d2-8aa1-720982496db1\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"startTime\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"endTime\": \"2018-06-19T22:41:30.0065337+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.0685369+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-19T22:40:52.5685614+08:00\",\r\n \"details\": \"Compilation:b1b17e3a-0829-48a6-90a3-2b1295556e9f;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.20933+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.2249557+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:fdf754e9-8d15-4771-9894-abb17dc63476\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-19T22:41:04.318714+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-19T22:41:11.8344229+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-06-19T22:41:30.0065337+08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"fdf754e9-8d15-4771-9894-abb17dc63476\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS ps7846; CREATE DATABASE ps7846;\\n\\tCREATE TABLE ps7846.dbo.ps8665\\n\\t(\\n\\t\\t\\t//Define schema of table\\n\\t\\t\\tUserId int, \\n\\t\\t\\tStart DateTime, \\n\\t\\t\\tRegion string, \\n\\t\\t\\tQuery string, \\n\\t\\t\\tDuration int, \\n\\t\\t\\tUrls string, \\n\\t\\t\\tClickedUrls string,\\n\\t\\tINDEX idx1 //Name of index\\n\\t\\tCLUSTERED (Region ASC) //Column to cluster by\\n\\t\\tPARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n\\t);\\n\\tALTER TABLE ps7846.dbo.ps8665 ADD IF NOT EXISTS PARTITION (1);\\n\\tDROP FUNCTION IF EXISTS ps7846.dbo.ps9864;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\\n\\tCREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\\n\\tCREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"algebraFilePath\": \"adl://ps5068.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/19/14/40/f1161f72-d1a8-43d2-8aa1-720982496db1/algebra.xml\",\r\n \"yarnApplicationId\": 5298839,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407686S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156257S\",\r\n \"totalRunningTime\": \"PT18.1721108S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8157db93-f454-4fb6-95c7-7274d6e7428c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ab6856a8-68ee-455d-a8dd-f617d8fd37ba"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"03d91dc5-08a2-4a72-baa3-0eabdf7a32b3\"\r\n },\r\n {\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"version\": \"b61f9930-4f66-49bd-aa13-92a136a83351\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0f96bbe8-6800-4a59-b1e0-dd3894f8f989"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:30 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ae26f622-0812-4558-9f13-1eaa973e6fe0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"version\": \"b61f9930-4f66-49bd-aa13-92a136a83351\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0c225330-e9ad-459d-8521-e3bc0ca80ea7"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/tables?basic=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3RhYmxlcz9iYXNpYz1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5b56c9e0-2a9b-4d1d-8534-8134b5de306e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"ps8665\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"30dc075c-7ff0-415f-a74f-46b31d8e81c5\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.47+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.47+08:00\",\r\n \"version\": \"a3b24bdc-3799-4b3b-aebc-73747f3c29cb\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0fa7af3b-9bbb-468e-b9f4-f4097853529f"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:31 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/tables?basic=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3RhYmxlcz9iYXNpYz1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fca550ff-93bb-4035-94c4-5d8a6c5f3466"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"ps8665\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"30dc075c-7ff0-415f-a74f-46b31d8e81c5\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.47+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.47+08:00\",\r\n \"version\": \"a3b24bdc-3799-4b3b-aebc-73747f3c29cb\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2c6f3114-6b28-402c-82b0-4ef4aa4bab9c"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:32 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/tables/ps8665?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3RhYmxlcy9wczg2NjU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6ffba508-699a-4e81-98f4-ec24e07608e4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"tableName\": \"ps8665\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"30dc075c-7ff0-415f-a74f-46b31d8e81c5\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.47+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.47+08:00\",\r\n \"version\": \"a3b24bdc-3799-4b3b-aebc-73747f3c29cb\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "65a7bcc9-2f25-49bd-b1aa-ad02440d402d"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:32 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/tables/ps8665/partitions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3RhYmxlcy9wczg2NjUvcGFydGl0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "753f8bf5-a17e-4a6a-84c5-e9e302bf02de"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"ps8665_Partition_bffac898-9168-4a51-bfe9-7b261cf0e12c\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createTime\": \"2018-06-20T05:41:25.487+08:00\",\r\n \"parentName\": {\r\n \"server\": \"da600a81-ef7a-4634-ab9d-73766754128e\",\r\n \"firstPart\": \"ps7846\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"ps8665\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"f359dbde-e1d4-4e13-b44b-8a1a1681b765\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d12219be-20cb-4073-8e17-6d307224a2c9"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/tables/ps8665/partitions/ps8665_Partition_bffac898-9168-4a51-bfe9-7b261cf0e12c?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3RhYmxlcy9wczg2NjUvcGFydGl0aW9ucy9wczg2NjVfUGFydGl0aW9uX2JmZmFjODk4LTkxNjgtNGE1MS1iZmU5LTdiMjYxY2YwZTEyYz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a704c19f-bd0f-4437-8369-f4925c487dbc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"ps8665_Partition_bffac898-9168-4a51-bfe9-7b261cf0e12c\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createTime\": \"2018-06-20T05:41:25.487+08:00\",\r\n \"parentName\": {\r\n \"server\": \"da600a81-ef7a-4634-ab9d-73766754128e\",\r\n \"firstPart\": \"ps7846\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"ps8665\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"f359dbde-e1d4-4e13-b44b-8a1a1681b765\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8a497cb8-30c8-4296-b2c8-5a83f762c2c1"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3RhYmxldmFsdWVkZnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e3682b78-0a73-4d0b-a1eb-c3152cc4ebd9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"tvfName\": \"ps9864\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.487+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.487+08:00\",\r\n \"version\": \"dc02f57b-7a31-403c-98f0-16aa8be48ff6\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "16cd97b8-f81b-440f-bd8a-81a3aad74f9b"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/tablevaluedfunctions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3RhYmxldmFsdWVkZnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "22fee97c-52d6-4b64-ba16-ebb2faa8bc12"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"tvfName\": \"ps9864\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.487+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.487+08:00\",\r\n \"version\": \"dc02f57b-7a31-403c-98f0-16aa8be48ff6\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6b338264-79ad-4415-8754-14e646412c5f"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/tablevaluedfunctions/ps9864?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3RhYmxldmFsdWVkZnVuY3Rpb25zL3BzOTg2ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e8f388fa-165b-4cb5-bd60-c7aca2ad54db"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"tvfName\": \"ps9864\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION ps7846.dbo.ps9864()\\n\\tRETURNS @result TABLE\\n\\t(\\n\\t\\ts_date DateTime,\\n\\t\\ts_time string,\\n\\t\\ts_sitename string,\\n\\t\\tcs_method string, \\n\\t\\tcs_uristem string,\\n\\t\\tcs_uriquery string,\\n\\t\\ts_port int,\\n\\t\\tcs_username string, \\n\\t\\tc_ip string,\\n\\t\\tcs_useragent string,\\n\\t\\tcs_cookie string,\\n\\t\\tcs_referer string, \\n\\t\\tcs_host string,\\n\\t\\tsc_status int,\\n\\t\\tsc_substatus int,\\n\\t\\tsc_win32status int, \\n\\t\\tsc_bytes int,\\n\\t\\tcs_bytes int,\\n\\t\\ts_timetaken int\\n\\t)\\n\\tAS\\n\\tBEGIN\\n\\n\\t\\t@result = EXTRACT\\n\\t\\t\\ts_date DateTime,\\n\\t\\t\\ts_time string,\\n\\t\\t\\ts_sitename string,\\n\\t\\t\\tcs_method string,\\n\\t\\t\\tcs_uristem string,\\n\\t\\t\\tcs_uriquery string,\\n\\t\\t\\ts_port int,\\n\\t\\t\\tcs_username string,\\n\\t\\t\\tc_ip string,\\n\\t\\t\\tcs_useragent string,\\n\\t\\t\\tcs_cookie string,\\n\\t\\t\\tcs_referer string,\\n\\t\\t\\tcs_host string,\\n\\t\\t\\tsc_status int,\\n\\t\\t\\tsc_substatus int,\\n\\t\\t\\tsc_win32status int,\\n\\t\\t\\tsc_bytes int,\\n\\t\\t\\tcs_bytes int,\\n\\t\\t\\ts_timetaken int\\n\\t\\tFROM @\\\"/Samples/Data/WebLog.log\\\"\\n\\t\\tUSING Extractors.Text(delimiter:' ');\\n\\n\\tRETURN;\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.487+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.487+08:00\",\r\n \"version\": \"dc02f57b-7a31-403c-98f0-16aa8be48ff6\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b958823c-8016-4df1-9f7a-90846f39e585"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/procedures?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3Byb2NlZHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38d466bc-a383-4d36-8370-f496758e4664"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"procName\": \"ps5184\",\r\n \"definition\": \"CREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"8dcc1dd4-2407-4e3a-8070-989d66d87e23\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ffe188e7-6418-4525-97f1-cc2934df6a45"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/procedures/ps5184?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3Byb2NlZHVyZXMvcHM1MTg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "264b149b-773e-41d9-9986-8fffa30c3125"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"procName\": \"ps5184\",\r\n \"definition\": \"CREATE PROCEDURE ps7846.dbo.ps5184()\\n\\tAS BEGIN\\n\\t CREATE VIEW ps7846.dbo.ps6339 \\n\\t AS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\t AS \\n\\t T(a, b);\\n\\tEND;\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"8dcc1dd4-2407-4e3a-8070-989d66d87e23\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c2a7ed3f-a0a6-4363-a095-b96a96fab70e"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/views?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3ZpZXdzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88f6dd5a-4bd3-4c28-a3e5-9f8707dde58f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"viewName\": \"ps6339\",\r\n \"definition\": \"CREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.5+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.5+08:00\",\r\n \"version\": \"5bb290c7-0d47-4faa-a01e-7707d4f220e1\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "21b9c1ed-da04-46ec-9965-38dae559af35"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/views?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3ZpZXdzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0d06016-f2ba-4ef4-9b8f-6d683b3d5886"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"viewName\": \"ps6339\",\r\n \"definition\": \"CREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.5+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.5+08:00\",\r\n \"version\": \"5bb290c7-0d47-4faa-a01e-7707d4f220e1\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c35172d2-f62e-41c1-9949-cfdb1e29c79f"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/schemas/dbo/views/ps6339?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NjaGVtYXMvZGJvL3ZpZXdzL3BzNjMzOT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90c001d7-8309-4aa4-9aee-2027db8e7443"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"viewName\": \"ps6339\",\r\n \"definition\": \"CREATE VIEW ps7846.dbo.ps6339 \\n\\tAS \\n\\t\\tSELECT * FROM \\n\\t\\t(\\n\\t\\t\\tVALUES(1,2),(2,4)\\n\\t\\t) \\n\\tAS \\n\\tT(a, b);\",\r\n \"computeAccountName\": \"ps4793\",\r\n \"databaseName\": \"ps7846\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2018-06-20T05:41:25.5+08:00\",\r\n \"updateTime\": \"2018-06-20T05:41:25.5+08:00\",\r\n \"version\": \"5bb290c7-0d47-4faa-a01e-7707d4f220e1\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "df5727b9-93e0-4809-b8ce-2d3bf0518a6d"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/secrets/ps4026?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NlY3JldHMvcHM0MDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"ps7145\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "69"
+ ],
+ "x-ms-client-request-id": [
+ "4622e9c8-d142-4360-83e0-5445e0fd222c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ae519f1c-e465-4cf1-9198-33c6b5431f06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/secrets/ps4026dup?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NlY3JldHMvcHM0MDI2ZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"ps7145\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "69"
+ ],
+ "x-ms-client-request-id": [
+ "84ccca4b-7b2c-4e8a-b3b4-9f5c9691ca78"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d7368d70-bf8f-4f72-ad15-52940a7c4fa4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/secrets/ps4026?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NlY3JldHMvcHM0MDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4650850d-c6c1-448c-934e-d3b47b3df17b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"creationTime\": \"2018-06-19T14:41:38.6243336Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b52a4cbe-5725-4fad-afab-983125151177"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/secrets/ps4026?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NlY3JldHMvcHM0MDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "737b8d80-39d4-4c69-ac94-a73ee4257002"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps4026' does not exist. Trace: adc9ded0-fa35-4f0c-ac54-51a9c530ab6a Time: 2018-06-19T07:41:48.3638870-07:00\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "adc9ded0-fa35-4f0c-ac54-51a9c530ab6a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:48 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/credentials/ps5475?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2NyZWRlbnRpYWxzL3BzNTQ3NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"ps7145\",\r\n \"uri\": \"https://fakedb.contoso.com/\",\r\n \"userId\": \"ps4026\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "92"
+ ],
+ "x-ms-client-request-id": [
+ "b63d3e8e-57fa-47c8-a16e-5de1fda25ab4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "cadc9e52-9011-4e85-b27d-b340dbe3f0a4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/credentials/ps5475?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2NyZWRlbnRpYWxzL3BzNTQ3NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"ps7145\",\r\n \"uri\": \"https://fakedb.contoso.com/\",\r\n \"userId\": \"ps4026\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "92"
+ ],
+ "x-ms-client-request-id": [
+ "fac3a25f-a343-407b-b86c-258f117c96fe"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "160290cc-ae74-449b-9a39-3263202ea578"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/credentials?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2NyZWRlbnRpYWxzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5cd8a660-8f1a-4b0a-8c97-d606a8b4b0f8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"ps5475\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c13405b0-cf8f-4026-bfd9-d7fece45fde2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:42 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/credentials/ps5475?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2NyZWRlbnRpYWxzL3BzNTQ3NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb296774-ca5a-4100-8c01-def77b7aea9b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"credentialName\": \"ps5475\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "6fcd1467-29c5-48d8-b65a-d29ff189a5bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:43 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/credentials/ps5475?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2NyZWRlbnRpYWxzL3BzNTQ3NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e70318d-33a6-4e37-9489-bef257c066b3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps5475' does not exist. Trace: eb5e232b-cf8a-4d03-b163-e56a39caeba9 Time: 2018-06-19T07:41:44.7701270-07:00\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "eb5e232b-cf8a-4d03-b163-e56a39caeba9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:44 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/credentials/ps5475?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2NyZWRlbnRpYWxzL3BzNTQ3NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad4da006-d21d-4231-ac6b-e756f38c9c02"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps5475' does not exist. Trace: b46eea93-edd3-411c-8249-bd7528549097 Time: 2018-06-19T07:41:47.4107341-07:00\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b46eea93-edd3-411c-8249-bd7528549097"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:47 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/credentials/ps5475?cascade=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2NyZWRlbnRpYWxzL3BzNTQ3NT9jYXNjYWRlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a9338e1-5fa7-45ec-8448-0919da741b11"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "99beafd6-925f-457e-85de-2e3745193809"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/credentials/ps5475?cascade=true&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2NyZWRlbnRpYWxzL3BzNTQ3NT9jYXNjYWRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ab5819bd-6fb0-4e90-b3d9-41ad9fa2a766"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "2f1a7337-2bb4-4fae-b2c6-dbd33c08c953"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/secrets/ps4026?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NlY3JldHMvcHM0MDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b1981bf0-accb-439d-823d-8768a75d5970"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "33e37a33-b21f-4e5d-b821-c1e764a0eb7d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:47 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/secrets?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c970a29c-7708-483f-a525-451b3e0d3490"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "bc39b43e-7c13-4376-a6f1-7abe866392b5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:49 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/secrets/ps4026dup?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L3NlY3JldHMvcHM0MDI2ZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "06bcebd5-7b45-4447-a786-b4cf722dc7b7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'ps4026dup' does not exist. Trace: 76164424-7e8e-4d78-9c81-b9901accd58e Time: 2018-06-19T07:41:49.7701578-07:00\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "76164424-7e8e-4d78-9c81-b9901accd58e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:49 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d5a53828-a0a3-4183-9eb3-2ef91d4b733c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0d6fcd81-6603-4eb5-b933-0bca1a705f5f"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1fd677da-759d-4227-adaf-393ba27e5c0b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "08770ace-5457-4f29-be53-1799099f983b"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:52 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "514d4e6d-92c3-44c9-a39e-3c9d2643b6de"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ff001987-4c31-4146-b47b-d8c035c357fe"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:53 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1fb23daa-e1b7-44bb-bf88-773cc30f6fad"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"9b6130bf-d65e-4464-b92e-733da0bc1c43\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4b07220a-8905-49f9-b4fe-5dce3e0c2190"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:55 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6970407f-89d2-4b41-b1d0-5e7dff134e15"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "066a29ce-96dd-41f1-9fb0-37f5fa214432"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:56 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed2dbd8e-35ca-4c56-8341-c5c794090751"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d84a0768-b0b1-433b-9d3e-0aecbebf1ec8"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b19dd21d-4421-44f2-9253-e769b8e4f41e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d4983af5-49df-428d-b67a-d6b17fb4d95b"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4111aac5-2ca3-4791-9cce-996f3bbf6ba5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a52d9d42-ddaa-4e95-9a30-6557ae7133a0"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6fdae94c-028f-41b5-b1f4-4b8b685c7d08"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "3d497461-5e04-4ff7-b9da-11092a832634"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c70800ca-32ce-4284-8e46-a017e4f3f3e7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "f0636279-838d-4b9e-85ee-71837e68e6eb"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "256bcf4c-949b-4767-b593-0b06ab5230b3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4005039c-f185-4f12-bc76-1a967698c818"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0e2ba163-b98e-4768-82c9-310450d661e7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e17302fa-327b-4da8-b5c3-4dce792391c7"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c66e6bc0-0815-4f1f-9fb5-e2968f8663a5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "712292e5-1c01-4957-a083-b69c9fb7fc53"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d652222-e02e-4431-8b86-9fdd057447eb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c609d9c1-bdd5-467e-b43f-5b61f2e4c5ec"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fbef4ca9-dfa0-4c08-870e-8202e7f99a61"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"9b6130bf-d65e-4464-b92e-733da0bc1c43\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "1f63c3f4-17cc-4151-8f61-0335483084a3"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96211b96-25c3-49d3-b7fe-a511db1c1db1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8deb7f7a-2c5d-49e3-8bcb-ec6487b54021"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff1d2927-ff0a-4814-b14d-9b70dd2a6049"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5e24da90-c5f7-40f7-bcc5-ce79d5acdfba"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:08 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64070078-7a68-4083-90c7-bd3fecf4f35c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "fb312ba9-f991-4373-8767-cecc7fc896e2"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "72ae2494-9233-492a-8ac4-599878c3ac9c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b09b99a8-41cd-42fb-8b46-61689caa5fa3"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:10 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9ab4e630-e9fc-4f0d-80c0-aa9ed47609b4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "b82c9f3c-d690-4b7b-8f6c-6365c32ef1b9"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bf315adb-0a0e-4a56-89dc-1095da79e9b1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c7190659-48e5-4ba3-bfcd-fe7395552411"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6df7613-fcd8-4a32-ab22-70f21d41a4b7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://ps4793.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "76d0294c-8200-4388-af79-d2c340fb05e6"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\",\r\n \"permission\": \"Use\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "x-ms-client-request-id": [
+ "34b16e90-cf59-4568-a21a-ac8b5da64438"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "0d7de44e-07a2-4da2-af15-087ac272f2a9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"9b6130bf-d65e-4464-b92e-733da0bc1c43\",\r\n \"permission\": \"Use\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "x-ms-client-request-id": [
+ "c14985e3-13b6-4045-8c20-43d39a080f29"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7e93f0e2-cbc0-42bf-a121-2eb2efcfdca4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:54 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"da583ccb-9d61-41d4-9cc0-b9ede18735d3\",\r\n \"permission\": \"None\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "109"
+ ],
+ "x-ms-client-request-id": [
+ "bb52a0da-c202-46df-92c1-c4ed6151542b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ecc1dbfb-7925-4979-a737-d45c312bc7c8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"ef71e5fb-3b49-4bf8-927a-6073ea01a0da\",\r\n \"permission\": \"Use\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "x-ms-client-request-id": [
+ "ca4d8c27-0a35-4311-9cf0-3ece94be017c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9f8ca064-5cdc-4397-8415-2ca915a97c18"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:58 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"f0e116fa-d1e5-4f62-b403-8c271db80ddd\",\r\n \"permission\": \"None\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "111"
+ ],
+ "x-ms-client-request-id": [
+ "ce019984-dd8f-4fca-911c-6ef4524e5818"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c9ad91fe-1765-4a1a-8e3b-7e2e0ad21c12"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9vcD1HUkFOVEFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"4258fb62-b967-497d-bf16-8f2c1d903f01\",\r\n \"permission\": \"None\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "112"
+ ],
+ "x-ms-client-request-id": [
+ "5381f9d1-9d17-4667-963c-426c6eaa2751"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "8aa629a2-dead-43f9-b743-0c44ab8e9afb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9vcD1SRVZPS0VBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "83"
+ ],
+ "x-ms-client-request-id": [
+ "e43b04d6-eac8-4523-94b0-3607479fc283"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a6e43ba7-4df9-4e85-8899-a01e5fabce04"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:53 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/ps7846/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvcHM3ODQ2L2FjbD9vcD1SRVZPS0VBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"9b6130bf-d65e-4464-b92e-733da0bc1c43\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "84"
+ ],
+ "x-ms-client-request-id": [
+ "fbf20947-425d-4bcb-ac0a-fb6525ed4603"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "05c19ce7-eb43-4825-b454-2dbc6a4cace4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:41:56 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\",\r\n \"permission\": \"Use\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "x-ms-client-request-id": [
+ "d7e970a1-3d7b-4c9a-9dac-3d544b4de8cd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "593bad8f-a693-4345-98b4-8eb561fd5fe5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"9b6130bf-d65e-4464-b92e-733da0bc1c43\",\r\n \"permission\": \"Use\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "x-ms-client-request-id": [
+ "e339ca9c-63ec-473b-b660-d75136f6bd9c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "47e23a3c-bc7e-4c05-9f9e-01d65e3a215e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"2a9db26f-fc25-4850-8863-063cfc6a79eb\",\r\n \"permission\": \"None\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "109"
+ ],
+ "x-ms-client-request-id": [
+ "dbae76e6-b39a-4df4-82fa-67c8ad3755b2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "9a0acace-de7e-45e2-9adc-30a1b5a63efc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:07 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"e01dd0c7-d3f3-4f17-b2b3-7a13cdbf3d7b\",\r\n \"permission\": \"Use\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "x-ms-client-request-id": [
+ "a4329e66-9754-4ac9-b215-cc5452f722ed"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "c39aedc5-c497-486e-bd79-a60b235be816"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:08 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"48a60bff-3ef5-48c2-95d1-b966f9094768\",\r\n \"permission\": \"None\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "111"
+ ],
+ "x-ms-client-request-id": [
+ "61ed3f4a-e273-4b9d-9919-8c4f93346a3e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4a9c9755-09d2-41f6-a62c-3c7aba05f69b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:10 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"a43ca1b6-2912-4a93-b88f-5286ae6fdb6a\",\r\n \"permission\": \"None\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "112"
+ ],
+ "x-ms-client-request-id": [
+ "4bde18fa-e18a-4027-8acc-7fb777d8659d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4831f232-8f66-4661-817a-56c5e0c70288"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9UkVWT0tFQUNFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"027c28d5-c91d-49f0-98c5-d10134b169b3\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "83"
+ ],
+ "x-ms-client-request-id": [
+ "e9178e65-0f19-4762-be85-4c76b13430bb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "4019d2e7-91a7-4b59-8228-b81bdac1d041"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9UkVWT0tFQUNFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"Group\",\r\n \"principalId\": \"9b6130bf-d65e-4464-b92e-733da0bc1c43\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "84"
+ ],
+ "x-ms-client-request-id": [
+ "60bcfdb4-2b05-4b10-9a2c-7a184226c935"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "ac3aa572-d910-40d4-a9bd-3122832687e2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:42:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeAnalytics/accounts/ps4793?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDc5Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03ee3975-f938-4b79-bbbc-7f6c92caf943"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -3373,28 +8935,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e786244c-833c-4e11-8615-abf4716aaa41"
+ "c5accc7d-95db-4c0d-84c2-56cbecaf5791"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "ec52c12c-20bd-47a1-b065-ff599cec1964"
+ "173c1aae-bdeb-4a97-aed0-8d79b01b91df"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040750Z:ec52c12c-20bd-47a1-b065-ff599cec1964"
+ "AUSTRALIAEAST:20180619T144221Z:173c1aae-bdeb-4a97-aed0-8d79b01b91df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:49 GMT"
+ "Tue, 19 Jun 2018 14:42:21 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3409,13 +8971,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps929?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTI5P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4059/providers/Microsoft.DataLakeStore/accounts/ps5068?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1MDY4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8c3f532-c4be-4239-acad-fa31ea0767bb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
"ResponseBody": "",
@@ -3429,47 +9000,59 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
"x-ms-request-id": [
- "8ab79891-a4d8-4adf-95ed-7c557ceea207"
+ "93b1a64b-7973-4406-ba58-27453e169586"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "8ab79891-a4d8-4adf-95ed-7c557ceea207"
+ "95bf7901-76af-4430-9c4f-2c6d4bd0488b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040752Z:8ab79891-a4d8-4adf-95ed-7c557ceea207"
+ "AUSTRALIAEAST:20180619T144229Z:95bf7901-76af-4430-9c4f-2c6d4bd0488b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:51 GMT"
+ "Tue, 19 Jun 2018 14:42:29 GMT"
],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU9TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4059?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDA1OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
+ "x-ms-client-request-id": [
+ "f7004556-0d0c-4797-9366-9d20c2986048"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -3486,44 +9069,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "28212b52-258d-4dbb-b163-513f06089e19"
+ "d7fd6a36-f060-4157-b543-cedddbaffc7b"
],
"x-ms-correlation-request-id": [
- "28212b52-258d-4dbb-b163-513f06089e19"
+ "d7fd6a36-f060-4157-b543-cedddbaffc7b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040752Z:28212b52-258d-4dbb-b163-513f06089e19"
+ "AUSTRALIAEAST:20180619T144233Z:d7fd6a36-f060-4157-b543-cedddbaffc7b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:07:52 GMT"
+ "Tue, 19 Jun 2018 14:42:33 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU9TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05Ua3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -3541,43 +9127,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14999"
],
"x-ms-request-id": [
- "1daabc46-1d3d-43d6-9998-882b5d50d6d2"
+ "f9ce35ed-1bec-401f-bcf2-5535886a5d50"
],
"x-ms-correlation-request-id": [
- "1daabc46-1d3d-43d6-9998-882b5d50d6d2"
+ "f9ce35ed-1bec-401f-bcf2-5535886a5d50"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040808Z:1daabc46-1d3d-43d6-9998-882b5d50d6d2"
+ "AUSTRALIAEAST:20180619T144249Z:f9ce35ed-1bec-401f-bcf2-5535886a5d50"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:08:08 GMT"
+ "Tue, 19 Jun 2018 14:42:48 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU9TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05Ua3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -3595,43 +9184,97 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14998"
],
"x-ms-request-id": [
- "c667e8e9-aa1a-49d0-b1a4-86c983117605"
+ "73174d48-4ae1-40a4-98f7-82a85be04fb1"
],
"x-ms-correlation-request-id": [
- "c667e8e9-aa1a-49d0-b1a4-86c983117605"
+ "73174d48-4ae1-40a4-98f7-82a85be04fb1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040823Z:c667e8e9-aa1a-49d0-b1a4-86c983117605"
+ "AUSTRALIAEAST:20180619T144305Z:73174d48-4ae1-40a4-98f7-82a85be04fb1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:08:23 GMT"
+ "Tue, 19 Jun 2018 14:43:04 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU9TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05Ua3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "22a8b534-28ae-41fd-8897-0b2ea1eeb600"
+ ],
+ "x-ms-correlation-request-id": [
+ "22a8b534-28ae-41fd-8897-0b2ea1eeb600"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180619T144320Z:22a8b534-28ae-41fd-8897-0b2ea1eeb600"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 19 Jun 2018 14:43:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05Ua3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -3646,25 +9289,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14996"
],
"x-ms-request-id": [
- "40d18635-0b87-4063-8502-12de81d48c39"
+ "1e3414a4-6897-47a2-b069-d7b38a54cfa9"
],
"x-ms-correlation-request-id": [
- "40d18635-0b87-4063-8502-12de81d48c39"
+ "1e3414a4-6897-47a2-b069-d7b38a54cfa9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T040838Z:40d18635-0b87-4063-8502-12de81d48c39"
+ "AUSTRALIAEAST:20180619T144321Z:1e3414a4-6897-47a2-b069-d7b38a54cfa9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 04:08:38 GMT"
+ "Tue, 19 Jun 2018 14:43:20 GMT"
]
},
"StatusCode": 200
@@ -3672,20 +9318,20 @@
],
"Names": {
"": [
- "ps929",
- "ps4093",
- "ps7758",
- "ps14",
- "ps1002",
- "ps9560",
- "ps2717",
- "ps2391",
- "ps2419",
- "ps5005",
- "ps7693"
+ "ps4059",
+ "ps4793",
+ "ps5068",
+ "ps7846",
+ "ps8665",
+ "ps9864",
+ "ps6339",
+ "ps5184",
+ "ps5475",
+ "ps4026",
+ "ps7145"
],
"createCatalogJob01": [
- "f68f45f0-acaf-4301-be48-8d310e993260"
+ "f1161f72-d1a8-43d2-8aa1-720982496db1"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaComputePolicy.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaComputePolicy.json
index dbf7ac6a1bda..6fd2905be815 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaComputePolicy.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaComputePolicy.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "7c15303b-08a5-4c97-9da5-a122ec75beff"
+ "d901ec93-4d64-48ef-a238-b3cb3c9ec2a5"
],
"x-ms-correlation-request-id": [
- "7c15303b-08a5-4c97-9da5-a122ec75beff"
+ "d901ec93-4d64-48ef-a238-b3cb3c9ec2a5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034542Z:7c15303b-08a5-4c97-9da5-a122ec75beff"
+ "AUSTRALIAEAST:20180607T141730Z:d901ec93-4d64-48ef-a238-b3cb3c9ec2a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:45:42 GMT"
+ "Thu, 07 Jun 2018 14:17:29 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,49 +76,61 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14999"
],
"x-ms-request-id": [
- "65220b65-b0c2-40ff-bf09-74ec38128371"
+ "e6bb5a9d-04f8-4f9d-8f83-7e2773dc8815"
],
"x-ms-correlation-request-id": [
- "65220b65-b0c2-40ff-bf09-74ec38128371"
+ "e6bb5a9d-04f8-4f9d-8f83-7e2773dc8815"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034543Z:65220b65-b0c2-40ff-bf09-74ec38128371"
+ "AUSTRALIAEAST:20180607T141731Z:e6bb5a9d-04f8-4f9d-8f83-7e2773dc8815"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:45:42 GMT"
+ "Thu, 07 Jun 2018 14:17:31 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps675?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjc1P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9271?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTI3MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "82c40851-4289-400a-a380-d168d9bb94df"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675\",\r\n \"name\": \"ps675\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271\",\r\n \"name\": \"ps9271\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "164"
+ "166"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,52 +142,55 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-request-id": [
- "4406117c-1524-4edd-bb7a-ede2714c4872"
+ "bba9be76-8705-4ab4-bfe6-a4ead83c1566"
],
"x-ms-correlation-request-id": [
- "4406117c-1524-4edd-bb7a-ede2714c4872"
+ "bba9be76-8705-4ab4-bfe6-a4ead83c1566"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034552Z:4406117c-1524-4edd-bb7a-ede2714c4872"
+ "AUSTRALIAEAST:20180607T141740Z:bba9be76-8705-4ab4-bfe6-a4ead83c1566"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:45:51 GMT"
+ "Thu, 07 Jun 2018 14:17:40 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0cc97b1-96a3-4318-8101-a8b2378eadc4"
+ "58076aef-281a-484d-bd61-c53cb774a4fc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps375' under resource group 'ps675' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1067' under resource group 'ps9271' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "151"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -187,49 +205,52 @@
"gateway"
],
"x-ms-request-id": [
- "25ecffa1-ea54-4ce0-b0e0-4942c2f3c7a0"
+ "d8126a8b-6ec9-4083-9e39-bf876fc9af3f"
],
"x-ms-correlation-request-id": [
- "25ecffa1-ea54-4ce0-b0e0-4942c2f3c7a0"
+ "d8126a8b-6ec9-4083-9e39-bf876fc9af3f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034552Z:25ecffa1-ea54-4ce0-b0e0-4942c2f3c7a0"
+ "AUSTRALIAEAST:20180607T141741Z:d8126a8b-6ec9-4083-9e39-bf876fc9af3f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:45:52 GMT"
+ "Thu, 07 Jun 2018 14:17:40 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17ef8d03-0a7d-4600-8c1f-51c46dc34c45"
+ "9088e0b5-f448-44a1-b7d6-2e49fd35710d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps375' under resource group 'ps675' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1067' under resource group 'ps9271' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "151"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -244,49 +265,52 @@
"gateway"
],
"x-ms-request-id": [
- "7ae5ba5e-b89d-4e11-91bf-8f92af900b03"
+ "9c83e255-9fce-47ad-86cf-203ca7cdad0d"
],
"x-ms-correlation-request-id": [
- "7ae5ba5e-b89d-4e11-91bf-8f92af900b03"
+ "9c83e255-9fce-47ad-86cf-203ca7cdad0d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034632Z:7ae5ba5e-b89d-4e11-91bf-8f92af900b03"
+ "AUSTRALIAEAST:20180607T141827Z:9c83e255-9fce-47ad-86cf-203ca7cdad0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:32 GMT"
+ "Thu, 07 Jun 2018 14:18:27 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19be77e1-880e-449f-8aed-00f8b16f0a8f"
+ "46d805de-8fe2-46db-99b0-e5fdb26803b9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps375' under resource group 'ps675' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1067' under resource group 'ps9271' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "151"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -301,43 +325,46 @@
"gateway"
],
"x-ms-request-id": [
- "0d269a8a-c9cf-4dd2-8130-edcf5f8948c9"
+ "a323d601-9142-4950-938c-c27952a21b45"
],
"x-ms-correlation-request-id": [
- "0d269a8a-c9cf-4dd2-8130-edcf5f8948c9"
+ "a323d601-9142-4950-938c-c27952a21b45"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034632Z:0d269a8a-c9cf-4dd2-8130-edcf5f8948c9"
+ "AUSTRALIAEAST:20180607T141828Z:a323d601-9142-4950-938c-c27952a21b45"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:32 GMT"
+ "Thu, 07 Jun 2018 14:18:27 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7748\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7748\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps375.azuredatalakeanalytics.net\",\r\n \"accountId\": \"06965212-08e5-4813-bc3b-936149f27cc4\",\r\n \"creationTime\": \"2017-12-07T03:46:37.5244234Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:46:37.5244234Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375\",\r\n \"name\": \"ps375\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9134\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9134\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1067.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e4\",\r\n \"creationTime\": \"2018-06-07T14:18:35.111906Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:18:35.111906Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067\",\r\n \"name\": \"ps1067\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1212"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -349,31 +376,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a60253e9-ca62-469a-858f-1a937acdad13"
+ "cc8833dc-aff3-4e87-928f-347d32b756e8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14966"
],
"x-ms-correlation-request-id": [
- "647d44d4-c1e1-4fe1-9cd5-df700589d2f9"
+ "0c9a25fe-2669-4ed6-b327-592b8130437d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034707Z:647d44d4-c1e1-4fe1-9cd5-df700589d2f9"
+ "AUSTRALIAEAST:20180607T141908Z:0c9a25fe-2669-4ed6-b327-592b8130437d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:06 GMT"
+ "Thu, 07 Jun 2018 14:19:07 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -388,28 +412,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "487319c0-7168-41f7-894a-792922765b71"
+ "d68de912-3e3c-4bb4-a4c7-0a2934c05623"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7748\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7748\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps375.azuredatalakeanalytics.net\",\r\n \"accountId\": \"06965212-08e5-4813-bc3b-936149f27cc4\",\r\n \"creationTime\": \"2017-12-07T03:46:37.5244234Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:46:37.5244234Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375\",\r\n \"name\": \"ps375\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9134\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9134\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1067.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e4\",\r\n \"creationTime\": \"2018-06-07T14:18:35.111906Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:18:35.111906Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067\",\r\n \"name\": \"ps1067\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1212"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -421,31 +445,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8340614e-629e-4159-95c1-9c942a31e4af"
+ "90d7f970-d852-4d1c-a69b-b0c5cac40583"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14965"
],
"x-ms-correlation-request-id": [
- "5f0b0975-e8b0-4bd3-8d13-140300fa0710"
+ "c85d0f50-635e-4782-a999-b490cdc778af"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034708Z:5f0b0975-e8b0-4bd3-8d13-140300fa0710"
+ "AUSTRALIAEAST:20180607T141909Z:c85d0f50-635e-4782-a999-b490cdc778af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:08 GMT"
+ "Thu, 07 Jun 2018 14:19:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -460,28 +481,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f6d598d0-1e20-4ec4-a594-deafff92c9f4"
+ "638db936-d85e-43a5-a273-205d13f36ee7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7748\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7748\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps375.azuredatalakeanalytics.net\",\r\n \"accountId\": \"06965212-08e5-4813-bc3b-936149f27cc4\",\r\n \"creationTime\": \"2017-12-07T03:46:37.5244234Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:46:37.5244234Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375\",\r\n \"name\": \"ps375\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9134\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9134\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1067.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e4\",\r\n \"creationTime\": \"2018-06-07T14:18:35.111906Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:18:35.111906Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067\",\r\n \"name\": \"ps1067\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1212"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -493,31 +514,28 @@
"no-cache"
],
"x-ms-request-id": [
- "652ff6a9-a57f-4b11-98c2-167a2c449886"
+ "adbebe27-987e-4e60-8cce-c34c72725daa"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14964"
],
"x-ms-correlation-request-id": [
- "0bd53879-a692-404f-a2b2-7bf8360dd431"
+ "c90dcf89-b7cd-4011-82bc-ebcfaebc2145"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034709Z:0bd53879-a692-404f-a2b2-7bf8360dd431"
+ "AUSTRALIAEAST:20180607T141911Z:c90dcf89-b7cd-4011-82bc-ebcfaebc2145"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:09 GMT"
+ "Thu, 07 Jun 2018 14:19:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -532,28 +550,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b02c93ab-0a2d-49a4-aff9-deb150d4bff0"
+ "38daea41-3b2b-4e42-936e-30d0c034b928"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7748\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7748\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [\r\n {\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"name\": \"ps9133\"\r\n }\r\n ],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps375.azuredatalakeanalytics.net\",\r\n \"accountId\": \"06965212-08e5-4813-bc3b-936149f27cc4\",\r\n \"creationTime\": \"2017-12-07T03:46:37.5244234Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:46:37.5244234Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375\",\r\n \"name\": \"ps375\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9134\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9134\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [\r\n {\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"name\": \"ps3764\"\r\n }\r\n ],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1067.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e4\",\r\n \"creationTime\": \"2018-06-07T14:18:35.111906Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:18:35.111906Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067\",\r\n \"name\": \"ps1067\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1370"
+ "1393"
],
"Content-Type": [
"application/json"
@@ -565,31 +583,28 @@
"no-cache"
],
"x-ms-request-id": [
- "928ea447-d7e3-4f42-ac0c-0af75020d232"
+ "f061c39d-421a-4fd0-b5a5-89d2bbcabf6f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14957"
],
"x-ms-correlation-request-id": [
- "64683a50-9765-4675-ba6c-fededea7d1a8"
+ "3458572d-44b4-4256-bbea-81737f5ffe67"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034719Z:64683a50-9765-4675-ba6c-fededea7d1a8"
+ "AUSTRALIAEAST:20180607T141929Z:3458572d-44b4-4256-bbea-81737f5ffe67"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:19 GMT"
+ "Thu, 07 Jun 2018 14:19:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -610,25 +625,25 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5dfbbc35-f4ce-47e0-aa32-ca22f3ca5cbe"
+ "a6631761-211b-410f-9866-9736af93e38a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "528"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -636,41 +651,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "c4e4db7e-a865-490b-8ad1-73f3e6a37574"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14972"
+ ],
+ "x-ms-request-id": [
+ "123c1e41-b539-43d6-939a-8e1df9f3c030"
],
"x-ms-correlation-request-id": [
- "1eb34c5c-f042-4f1c-a633-df6f5c84c4ca"
+ "123c1e41-b539-43d6-939a-8e1df9f3c030"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034552Z:1eb34c5c-f042-4f1c-a633-df6f5c84c4ca"
+ "AUSTRALIAEAST:20180607T141741Z:123c1e41-b539-43d6-939a-8e1df9f3c030"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:45:52 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 14:17:40 GMT"
]
},
"StatusCode": 200
@@ -682,22 +685,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1be7e44-77ec-4b0f-8413-28c4b94b2f4d"
+ "c4c9da07-50f0-4932-9576-1fd57c201545"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps375.azuredatalakeanalytics.net\",\r\n \"accountId\": \"06965212-08e5-4813-bc3b-936149f27cc4\",\r\n \"creationTime\": \"2017-12-07T03:46:37.5244234Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:46:37.5244234Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375\",\r\n \"name\": \"ps375\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1067.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e4\",\r\n \"creationTime\": \"2018-06-07T14:18:35.111906Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:18:35.111906Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067\",\r\n \"name\": \"ps1067\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1014"
+ "497"
],
"Content-Type": [
"application/json"
@@ -709,31 +712,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4a1dfc4d-6d1c-4faf-bda8-321a5883f7ea"
+ "d70e93e3-fe09-4a37-9cca-6d7b5a41dcd5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14960"
],
"x-ms-correlation-request-id": [
- "d006d2f4-005a-40d9-8b40-c7cbb1eff8d8"
+ "a6bba907-7a7c-45a0-b7e4-2f28b2233200"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034716Z:d006d2f4-005a-40d9-8b40-c7cbb1eff8d8"
+ "AUSTRALIAEAST:20180607T141923Z:a6bba907-7a7c-45a0-b7e4-2f28b2233200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:16 GMT"
+ "Thu, 07 Jun 2018 14:19:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -754,22 +754,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f7b8a5b0-d72a-4983-842b-37ae751b4ffc"
+ "ede35fdc-3428-4952-8109-12cbf1546271"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps375.azuredatalakeanalytics.net\",\r\n \"accountId\": \"06965212-08e5-4813-bc3b-936149f27cc4\",\r\n \"creationTime\": \"2017-12-07T03:46:37.5244234Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:46:37.5244234Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375\",\r\n \"name\": \"ps375\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1067.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e4\",\r\n \"creationTime\": \"2018-06-07T14:18:35.111906Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:18:35.111906Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067\",\r\n \"name\": \"ps1067\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1014"
+ "497"
],
"Content-Type": [
"application/json"
@@ -781,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e27a2726-cb83-4eb2-b2ca-0078f083f6e0"
+ "0dc6f0ee-d4c0-485e-abc8-56f08a554fc4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14959"
],
"x-ms-correlation-request-id": [
- "37a58f76-39f5-4221-8be8-b2739e5280b0"
+ "370323d6-a1ce-41d1-9361-817d97c35f4d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034718Z:37a58f76-39f5-4221-8be8-b2739e5280b0"
+ "AUSTRALIAEAST:20180607T141926Z:370323d6-a1ce-41d1-9361-817d97c35f4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:17 GMT"
+ "Thu, 07 Jun 2018 14:19:26 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -820,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MTM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "757db465-b731-4ac3-8e56-f717640f8bb3"
+ "d46f1fbf-9998-4cff-a0df-46e9daeeaa06"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7748' under resource group 'ps675' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps9134' under resource group 'ps9271' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "148"
+ "149"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -856,43 +853,46 @@
"gateway"
],
"x-ms-request-id": [
- "b3f8e870-9be5-4569-8d44-9a0b94b3f76f"
+ "eb4d2bc9-047d-43f7-998a-6070745fe72f"
],
"x-ms-correlation-request-id": [
- "b3f8e870-9be5-4569-8d44-9a0b94b3f76f"
+ "eb4d2bc9-047d-43f7-998a-6070745fe72f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034553Z:b3f8e870-9be5-4569-8d44-9a0b94b3f76f"
+ "AUSTRALIAEAST:20180607T141744Z:eb4d2bc9-047d-43f7-998a-6070745fe72f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:45:53 GMT"
+ "Thu, 07 Jun 2018 14:17:44 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MTM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7748.azuredatalakestore.net\",\r\n \"accountId\": \"a0267545-2c96-43fd-879c-8530b23ed590\",\r\n \"creationTime\": \"2017-12-07T03:45:59.5166565Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:45:59.5166565Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3d9ac239-b946-4779-a3a7-321835dd14e6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748\",\r\n \"name\": \"ps7748\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9134.azuredatalakestore.net\",\r\n \"accountId\": \"f8437a3d-125d-4772-99e1-8943ae0c66f6\",\r\n \"creationTime\": \"2018-06-07T14:17:53.3104967Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:17:53.3104967Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"81449b65-501e-4f2b-8f6a-95bd01f00a1a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134\",\r\n \"name\": \"ps9134\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "907"
+ "992"
],
"Content-Type": [
"application/json"
@@ -904,31 +904,28 @@
"no-cache"
],
"x-ms-request-id": [
- "50b337e0-8572-4c77-9483-8694554ee411"
+ "3c687423-11c8-4c06-be2d-7ece2de184fa"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14984"
],
"x-ms-correlation-request-id": [
- "35489047-5189-4076-8eb4-99a3604e57d3"
+ "ab69d8d5-2a1a-461b-8c75-364e72f06758"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034631Z:35489047-5189-4076-8eb4-99a3604e57d3"
+ "AUSTRALIAEAST:20180607T141828Z:ab69d8d5-2a1a-461b-8c75-364e72f06758"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:30 GMT"
+ "Thu, 07 Jun 2018 14:18:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -943,28 +940,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MTM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a53d0f20-0be3-4b72-a8f7-37956550ab78"
+ "0c0e8b55-afcf-405f-b771-2fcccd52b2c1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7748.azuredatalakestore.net\",\r\n \"accountId\": \"a0267545-2c96-43fd-879c-8530b23ed590\",\r\n \"creationTime\": \"2017-12-07T03:45:59.5166565Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:45:59.5166565Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3d9ac239-b946-4779-a3a7-321835dd14e6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748\",\r\n \"name\": \"ps7748\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9134.azuredatalakestore.net\",\r\n \"accountId\": \"f8437a3d-125d-4772-99e1-8943ae0c66f6\",\r\n \"creationTime\": \"2018-06-07T14:17:53.3104967Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:17:53.3104967Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"81449b65-501e-4f2b-8f6a-95bd01f00a1a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134\",\r\n \"name\": \"ps9134\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "907"
+ "992"
],
"Content-Type": [
"application/json"
@@ -976,31 +973,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b508c513-8605-4ecc-aaf2-112e7b464458"
+ "c1238678-6c95-433d-b449-155fe489af06"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14983"
],
"x-ms-correlation-request-id": [
- "fa7845f7-3f68-47c6-bc32-3757f84cbdaa"
+ "674c33a9-b351-469f-89fc-96b0f1f13a9b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034724Z:fa7845f7-3f68-47c6-bc32-3757f84cbdaa"
+ "AUSTRALIAEAST:20180607T141948Z:674c33a9-b351-469f-89fc-96b0f1f13a9b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:23 GMT"
+ "Thu, 07 Jun 2018 14:19:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1015,34 +1009,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MTM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "cdc1e8d5-709e-4548-be72-5163e945de19"
+ "3b3a779a-7ec4-4800-b901-428c34ebd4a6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a0267545-2c96-43fd-879c-8530b23ed590\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748\",\r\n \"name\": \"ps7748\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f8437a3d-125d-4772-99e1-8943ae0c66f6\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134\",\r\n \"name\": \"ps9134\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "561"
+ "560"
],
"Content-Type": [
"application/json"
@@ -1057,37 +1051,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a0267545-2c96-43fd-879c-8530b23ed5900?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/f8437a3d-125d-4772-99e1-8943ae0c66f60?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "2be57393-130a-4bd5-b3ad-b4f26804c5a7"
+ "b5c89d24-a8bb-4ba6-b5ce-b650d15a5ed9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "238490b6-956a-4c26-bb4c-d85847cfb9d9"
+ "95719696-63f8-4e37-82a5-e858347be34d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034558Z:238490b6-956a-4c26-bb4c-d85847cfb9d9"
+ "AUSTRALIAEAST:20180607T141753Z:95719696-63f8-4e37-82a5-e858347be34d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:45:58 GMT"
+ "Thu, 07 Jun 2018 14:17:52 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1102,13 +1093,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a0267545-2c96-43fd-879c-8530b23ed5900?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2EwMjY3NTQ1LTJjOTYtNDNmZC04NzljLTg1MzBiMjNlZDU5MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/f8437a3d-125d-4772-99e1-8943ae0c66f60?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2Y4NDM3YTNkLTEyNWQtNDc3Mi05OWUxLTg5NDNhZTBjNjZmNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1129,31 +1120,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7b184cf5-52b0-4bb2-baee-8886fa2306b0"
+ "948a4c56-88ee-44d7-9f9d-dc6c4c05b719"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14987"
],
"x-ms-correlation-request-id": [
- "42f5b311-b76a-47ea-b225-3c6322767947"
+ "37ac5e1d-2027-4390-a8af-86605b765aa4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034609Z:42f5b311-b76a-47ea-b225-3c6322767947"
+ "AUSTRALIAEAST:20180607T141804Z:37ac5e1d-2027-4390-a8af-86605b765aa4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:08 GMT"
+ "Thu, 07 Jun 2018 14:18:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1168,13 +1156,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a0267545-2c96-43fd-879c-8530b23ed5900?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2EwMjY3NTQ1LTJjOTYtNDNmZC04NzljLTg1MzBiMjNlZDU5MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/f8437a3d-125d-4772-99e1-8943ae0c66f60?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2Y4NDM3YTNkLTEyNWQtNDc3Mi05OWUxLTg5NDNhZTBjNjZmNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1195,31 +1183,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2d337a34-dd74-4e22-95a2-7ce2bbe9c97a"
+ "fe714bdc-efa5-40ae-95b8-7f99dbc7989c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14986"
],
"x-ms-correlation-request-id": [
- "9351f0ef-5ef5-41c3-beaf-10f7a60999ce"
+ "fd9cf853-5635-40fd-8bc7-c5e4fa819015"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034619Z:9351f0ef-5ef5-41c3-beaf-10f7a60999ce"
+ "AUSTRALIAEAST:20180607T141815Z:fd9cf853-5635-40fd-8bc7-c5e4fa819015"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:19 GMT"
+ "Thu, 07 Jun 2018 14:18:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1234,13 +1219,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a0267545-2c96-43fd-879c-8530b23ed5900?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2EwMjY3NTQ1LTJjOTYtNDNmZC04NzljLTg1MzBiMjNlZDU5MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/f8437a3d-125d-4772-99e1-8943ae0c66f60?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2Y4NDM3YTNkLTEyNWQtNDc3Mi05OWUxLTg5NDNhZTBjNjZmNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1261,31 +1246,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7bc9e78f-05e3-47fd-b370-81e9a5857cf5"
+ "57799286-199d-42e4-ae2f-253b256b1735"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14985"
],
"x-ms-correlation-request-id": [
- "5d7f5ba6-953d-420d-8972-2301921b6ee0"
+ "b1ef8ca0-9ddf-4f13-9e32-7e738c2dc788"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034630Z:5d7f5ba6-953d-420d-8972-2301921b6ee0"
+ "AUSTRALIAEAST:20180607T141827Z:b1ef8ca0-9ddf-4f13-9e32-7e738c2dc788"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:30 GMT"
+ "Thu, 07 Jun 2018 14:18:26 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1300,34 +1282,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7748\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7748\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9134\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps9134\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "fdf41c35-12f9-4883-86c6-45da6636c7ee"
+ "20c9f99b-f09d-412f-95c5-91f7b6c86999"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7748\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7748\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"06965212-08e5-4813-bc3b-936149f27cc4\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375\",\r\n \"name\": \"ps375\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9134\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9134\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e4\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067\",\r\n \"name\": \"ps1067\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "486"
+ "487"
],
"Content-Type": [
"application/json"
@@ -1342,37 +1324,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/06965212-08e5-4813-bc3b-936149f27cc40?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e40?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "627d2393-37c6-46d2-ac21-250adefb31a1"
+ "781c2433-e261-41f5-bcf3-85b1cfdaa2a5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "0d67d1ea-48a9-4d55-89eb-a4031936502a"
+ "abaf4a0a-c3a2-4679-8ee2-09e74e462306"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034635Z:0d67d1ea-48a9-4d55-89eb-a4031936502a"
+ "AUSTRALIAEAST:20180607T141832Z:abaf4a0a-c3a2-4679-8ee2-09e74e462306"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:34 GMT"
+ "Thu, 07 Jun 2018 14:18:32 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1387,16 +1366,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/06965212-08e5-4813-bc3b-936149f27cc40?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wNjk2NTIxMi0wOGU1LTQ4MTMtYmMzYi05MzYxNDlmMjdjYzQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e40?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8xY2IyM2MwZC1kZGYwLTRjYzYtOTA2Yi1hZDliYWU0ZDE2ZTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1414,31 +1393,28 @@
"no-cache"
],
"x-ms-request-id": [
- "803c8ee0-6ca1-4f29-a521-06ff9cbe01d6"
+ "9a38a98f-d9ca-4aa3-beb0-56b9a4ab5409"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14969"
],
"x-ms-correlation-request-id": [
- "44f4aba7-a9d6-46ba-82b4-6a91db4c8a2c"
+ "4bc47cd2-0e7c-4544-84be-71202f405bfb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034645Z:44f4aba7-a9d6-46ba-82b4-6a91db4c8a2c"
+ "AUSTRALIAEAST:20180607T141844Z:4bc47cd2-0e7c-4544-84be-71202f405bfb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:45 GMT"
+ "Thu, 07 Jun 2018 14:18:44 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1453,16 +1429,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/06965212-08e5-4813-bc3b-936149f27cc40?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wNjk2NTIxMi0wOGU1LTQ4MTMtYmMzYi05MzYxNDlmMjdjYzQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e40?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8xY2IyM2MwZC1kZGYwLTRjYzYtOTA2Yi1hZDliYWU0ZDE2ZTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1480,31 +1456,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fd447623-f071-4604-b464-5b408dfe46b7"
+ "d95507d1-b3a8-4a1c-8f21-b68ac81ea59c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14968"
],
"x-ms-correlation-request-id": [
- "5404d5f0-0ccc-4ab0-b104-2e96fc9016aa"
+ "9a599559-4fb0-4131-bb91-afade68766ac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034656Z:5404d5f0-0ccc-4ab0-b104-2e96fc9016aa"
+ "AUSTRALIAEAST:20180607T141855Z:9a599559-4fb0-4131-bb91-afade68766ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:46:56 GMT"
+ "Thu, 07 Jun 2018 14:18:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1519,16 +1492,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/06965212-08e5-4813-bc3b-936149f27cc40?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wNjk2NTIxMi0wOGU1LTQ4MTMtYmMzYi05MzYxNDlmMjdjYzQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e40?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8xY2IyM2MwZC1kZGYwLTRjYzYtOTA2Yi1hZDliYWU0ZDE2ZTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1546,31 +1519,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ceac74cc-1f8a-44e9-a37d-9d7f4e7ffcc0"
+ "785b2cc2-18a3-4ed6-a55b-70777a786be1"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14967"
],
"x-ms-correlation-request-id": [
- "ef743f8a-d86a-4300-8630-a0c16e278152"
+ "6025bafb-b9aa-480f-b3f1-7de16762b44a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034707Z:ef743f8a-d86a-4300-8630-a0c16e278152"
+ "AUSTRALIAEAST:20180607T141906Z:6025bafb-b9aa-480f-b3f1-7de16762b44a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:07 GMT"
+ "Thu, 07 Jun 2018 14:19:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1585,8 +1555,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzUvY29tcHV0ZVBvbGljaWVzL3BzMjA4MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9jb21wdXRlUG9saWNpZXMvcHM1NDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n }\r\n}",
"RequestHeaders": {
@@ -1597,22 +1567,22 @@
"151"
],
"x-ms-client-request-id": [
- "76382534-b495-43b4-bee0-8a85a7ee4729"
+ "0cbbeac9-38c2-44c9-9deb-3bd914523a6f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080\",\r\n \"name\": \"ps2080\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409\",\r\n \"name\": \"ps5409\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "353"
+ "355"
],
"Content-Type": [
"application/json"
@@ -1624,31 +1594,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2ce691c3-1737-466c-bd03-9e442301110d"
+ "7abade4f-e53a-46c7-84c2-34388980cb42"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-correlation-request-id": [
- "8506a9e3-401f-445c-808d-d6f2f61d1bd7"
+ "a4a55246-8700-45ed-b220-ca60a34b2fff"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034711Z:8506a9e3-401f-445c-808d-d6f2f61d1bd7"
+ "AUSTRALIAEAST:20180607T141914Z:a4a55246-8700-45ed-b220-ca60a34b2fff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:10 GMT"
+ "Thu, 07 Jun 2018 14:19:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1663,8 +1630,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps9133?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzUvY29tcHV0ZVBvbGljaWVzL3BzOTEzMz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps3764?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9jb21wdXRlUG9saWNpZXMvcHMzNzY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n }\r\n}",
"RequestHeaders": {
@@ -1675,22 +1642,22 @@
"181"
],
"x-ms-client-request-id": [
- "42a43639-4b33-48b7-864d-5b0b69bce08f"
+ "1a95785c-6d39-4da8-b597-88f45328f062"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps9133\",\r\n \"name\": \"ps9133\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps3764\",\r\n \"name\": \"ps3764\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "376"
+ "378"
],
"Content-Type": [
"application/json"
@@ -1702,31 +1669,28 @@
"no-cache"
],
"x-ms-request-id": [
- "62c70414-a8a9-4b63-a6fc-db3786652a39"
+ "696e6fc0-6282-4c3c-9dd5-fc1e2316f335"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1194"
],
"x-ms-correlation-request-id": [
- "df34258e-d74e-41e5-9e0f-3609aa53410e"
+ "c7aba47b-f03c-4fb5-b04f-6a956d8c3670"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034712Z:df34258e-d74e-41e5-9e0f-3609aa53410e"
+ "AUSTRALIAEAST:20180607T141916Z:c7aba47b-f03c-4fb5-b04f-6a956d8c3670"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:12 GMT"
+ "Thu, 07 Jun 2018 14:19:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1741,28 +1705,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzUvY29tcHV0ZVBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9jb21wdXRlUG9saWNpZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a2099ec-5c42-433d-bd11-b54ca4ca9848"
+ "0ea20edf-c0d9-4a8c-8b62-9283c4669d12"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080\",\r\n \"name\": \"ps2080\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n },\r\n {\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps9133\",\r\n \"name\": \"ps9133\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"objectId\": \"0583cfd7-60f5-43f0-9597-68b85591fc69\",\r\n \"objectType\": \"Group\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps3764\",\r\n \"name\": \"ps3764\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n },\r\n {\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409\",\r\n \"name\": \"ps5409\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "742"
+ "746"
],
"Content-Type": [
"application/json"
@@ -1774,31 +1738,28 @@
"no-cache"
],
"x-ms-request-id": [
- "284f9d26-ce94-4d9b-b564-b0ca14d06eac"
+ "fe3eaf20-138a-45b5-8c1d-1f331f0b248e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14963"
],
"x-ms-correlation-request-id": [
- "a9bca24d-d727-480e-8800-b388a3af6133"
+ "c7820ee9-b43f-4a57-ab66-9520e5ec05f1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034713Z:a9bca24d-d727-480e-8800-b388a3af6133"
+ "AUSTRALIAEAST:20180607T141917Z:c7820ee9-b43f-4a57-ab66-9520e5ec05f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:12 GMT"
+ "Thu, 07 Jun 2018 14:19:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1813,28 +1774,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzUvY29tcHV0ZVBvbGljaWVzL3BzMjA4MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9jb21wdXRlUG9saWNpZXMvcHM1NDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54a2decc-25fa-47bf-ad30-aa0dc9abf1b9"
+ "26339cd0-b5e8-415c-b1d0-14c649a6022d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080\",\r\n \"name\": \"ps2080\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409\",\r\n \"name\": \"ps5409\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "353"
+ "355"
],
"Content-Type": [
"application/json"
@@ -1846,31 +1807,28 @@
"no-cache"
],
"x-ms-request-id": [
- "262ae94c-ffa2-4b85-8bdb-4ebf20b11c79"
+ "032688b6-98f0-47bd-a1f7-25cc3d9be144"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14962"
],
"x-ms-correlation-request-id": [
- "2415f4be-6478-4782-8cff-f230f8e59587"
+ "2cd4d6f5-8298-46fc-a494-1a9bb0f27efb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034713Z:2415f4be-6478-4782-8cff-f230f8e59587"
+ "AUSTRALIAEAST:20180607T141919Z:2cd4d6f5-8298-46fc-a494-1a9bb0f27efb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:12 GMT"
+ "Thu, 07 Jun 2018 14:19:18 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1885,28 +1843,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzUvY29tcHV0ZVBvbGljaWVzL3BzMjA4MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9jb21wdXRlUG9saWNpZXMvcHM1NDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1852e376-ccab-42e3-9245-c4ffc8b584ce"
+ "f86b0d8e-4bbc-4e87-9340-b2bb32748023"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080\",\r\n \"name\": \"ps2080\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409\",\r\n \"name\": \"ps5409\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "375"
+ "377"
],
"Content-Type": [
"application/json"
@@ -1918,31 +1876,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e7698b0d-c373-4795-8bb6-ff3a906fa37d"
+ "55a98b54-d818-4e61-9f5e-6069096306a3"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14961"
],
"x-ms-correlation-request-id": [
- "cb1334a1-6ea3-4cf1-addf-32f89fbc9a44"
+ "d17c5400-ba38-44c4-aa4c-cb8797dfec42"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034715Z:cb1334a1-6ea3-4cf1-addf-32f89fbc9a44"
+ "AUSTRALIAEAST:20180607T141922Z:d17c5400-ba38-44c4-aa4c-cb8797dfec42"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:15 GMT"
+ "Thu, 07 Jun 2018 14:19:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1957,22 +1912,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzUvY29tcHV0ZVBvbGljaWVzL3BzMjA4MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9jb21wdXRlUG9saWNpZXMvcHM1NDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf385a5e-045e-4173-adfe-8e6e3564aa86"
+ "da4eb751-398d-4006-99aa-14e442203be1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}",
@@ -1990,31 +1945,28 @@
"no-cache"
],
"x-ms-request-id": [
- "db8830fa-967d-40b8-aced-bcf86bf46175"
+ "03834cb2-f905-4619-bc4a-bdd7fcfdba3d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14958"
],
"x-ms-correlation-request-id": [
- "0273642b-b9ca-4508-aba8-be0090702297"
+ "e94c644a-1911-4319-931a-188b2d5773bc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034718Z:0273642b-b9ca-4508-aba8-be0090702297"
+ "AUSTRALIAEAST:20180607T141928Z:e94c644a-1911-4319-931a-188b2d5773bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:18 GMT"
+ "Thu, 07 Jun 2018 14:19:27 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2029,8 +1981,8 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzUvY29tcHV0ZVBvbGljaWVzL3BzMjA4MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9jb21wdXRlUG9saWNpZXMvcHM1NDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"minPriorityPerJob\": 2\r\n }\r\n}",
"RequestHeaders": {
@@ -2041,22 +1993,22 @@
"56"
],
"x-ms-client-request-id": [
- "1b9d7351-7b00-4e30-8f6f-6891678a76f3"
+ "d7a00dfa-88b1-42bc-b4d8-ba0a1a099a19"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080\",\r\n \"name\": \"ps2080\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"objectId\": \"8ce05900-7a9e-4895-b3f0-0fbcee507803\",\r\n \"objectType\": \"User\",\r\n \"maxDegreeOfParallelismPerJob\": 2,\r\n \"minPriorityPerJob\": 2\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409\",\r\n \"name\": \"ps5409\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "375"
+ "377"
],
"Content-Type": [
"application/json"
@@ -2068,31 +2020,28 @@
"no-cache"
],
"x-ms-request-id": [
- "952bf15c-2405-45c1-9091-695bbb13e6f0"
+ "3e2186b5-fcc0-4585-a91d-f353769c5fa9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1193"
],
"x-ms-correlation-request-id": [
- "fafe6ce9-baf3-4352-b6fc-0f15cd3ae114"
+ "ae5f0565-dace-453b-aa59-44231c7470aa"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034714Z:fafe6ce9-baf3-4352-b6fc-0f15cd3ae114"
+ "AUSTRALIAEAST:20180607T141920Z:ae5f0565-dace-453b-aa59-44231c7470aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:14 GMT"
+ "Thu, 07 Jun 2018 14:19:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2107,22 +2056,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375/computePolicies/ps2080?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzUvY29tcHV0ZVBvbGljaWVzL3BzMjA4MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/computePolicies/ps5409?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9jb21wdXRlUG9saWNpZXMvcHM1NDA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d8068a2-46d1-4319-bacf-e28d3874b62a"
+ "e3dad557-565e-444b-8bb9-61905964b016"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2137,28 +2086,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f9279501-5f5b-4b84-9475-f7efa287a5e0"
+ "3a6a0dbf-103d-4886-919f-914a88c9b360"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "39d355d1-4ee7-4fc7-b16b-92dc83a5d31a"
+ "7abc2f26-8acc-49a3-8ca7-74daf9c7ef45"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034717Z:39d355d1-4ee7-4fc7-b16b-92dc83a5d31a"
+ "AUSTRALIAEAST:20180607T141925Z:7abc2f26-8acc-49a3-8ca7-74daf9c7ef45"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:16 GMT"
+ "Thu, 07 Jun 2018 14:19:24 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2173,22 +2122,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeAnalytics/accounts/ps375?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMzNzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c33887f-b285-4258-9874-382eeb74fff6"
+ "a805a567-b237-4f95-8f13-6aa79b13c331"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2202,29 +2151,101 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e45?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "84fea2f8-8965-4387-bab1-8eeb64d854da"
+ "1e50aa5e-cc32-453e-b251-1a54f1054b2f"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14994"
],
"x-ms-correlation-request-id": [
- "d08becf7-72f5-468a-b881-fa467f574e3f"
+ "ebfe1efc-5348-4d16-828d-ca8c4d54249a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034723Z:d08becf7-72f5-468a-b881-fa467f574e3f"
+ "AUSTRALIAEAST:20180607T141933Z:ebfe1efc-5348-4d16-828d-ca8c4d54249a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:22 GMT"
+ "Thu, 07 Jun 2018 14:19:32 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/operationresults/5?api-version=2016-11-01"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1cb23c0d-ddf0-4cc6-906b-ad9bae4d16e45?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8xY2IyM2MwZC1kZGYwLTRjYzYtOTA2Yi1hZDliYWU0ZDE2ZTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "418f6ac1-7d05-431e-acc6-b5900deb0571"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0fda350-4f3a-4c05-a32a-b1ae129542d3"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T141944Z:a0fda350-4f3a-4c05-a32a-b1ae129542d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 14:19:43 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2239,19 +2260,79 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps675/providers/Microsoft.DataLakeStore/accounts/ps7748?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc3NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9271/providers/Microsoft.DataLakeAnalytics/accounts/ps1067/operationresults/5?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTA2Ny9vcGVyYXRpb25yZXN1bHRzLzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "308686f2-24fc-4d0c-9339-a2dcc70030c9"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-correlation-request-id": [
+ "268b7c22-09e2-4b20-b912-fed376ae2e46"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T141946Z:268b7c22-09e2-4b20-b912-fed376ae2e46"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 14:19:45 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9271/providers/Microsoft.DataLakeStore/accounts/ps9134?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTI3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5MTM0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "979ee33c-7fee-4cbd-8583-3b158cc9d91c"
+ "f6c4100e-1b31-4afd-b20e-b8491fbc4ed0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -2269,28 +2350,28 @@
"no-cache"
],
"x-ms-request-id": [
- "160162d4-c698-4e69-8c41-545b42e407ed"
+ "d1914a2e-181d-4a0a-92ee-c7bf9bb26d14"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "67ae85a9-9f0b-4e7d-bb44-f0b73296fb20"
+ "bcb4d9bc-d599-4625-9483-3319a95e38b2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034727Z:67ae85a9-9f0b-4e7d-bb44-f0b73296fb20"
+ "AUSTRALIAEAST:20180607T141954Z:bcb4d9bc-d599-4625-9483-3319a95e38b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:27 GMT"
+ "Thu, 07 Jun 2018 14:19:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2305,13 +2386,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps675?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjc1P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9271?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTI3MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "12cf7919-30f7-4d50-90f3-a169aeb0f1aa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2328,44 +2418,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-request-id": [
- "1c32cfb6-adf8-4588-b5f0-32e34a91ed82"
+ "c7e938a1-283a-4e52-97bb-ea42c57d302b"
],
"x-ms-correlation-request-id": [
- "1c32cfb6-adf8-4588-b5f0-32e34a91ed82"
+ "c7e938a1-283a-4e52-97bb-ea42c57d302b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034729Z:1c32cfb6-adf8-4588-b5f0-32e34a91ed82"
+ "AUSTRALIAEAST:20180607T141959Z:c7e938a1-283a-4e52-97bb-ea42c57d302b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:29 GMT"
+ "Thu, 07 Jun 2018 14:19:59 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3NS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNzEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3NS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM05TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNzEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU56RXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2383,43 +2476,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14995"
],
"x-ms-request-id": [
- "a6101e57-e4d7-4d2a-9c58-db050830c7d5"
+ "e3d51d26-717b-4747-bfb7-88b16f2a82f9"
],
"x-ms-correlation-request-id": [
- "a6101e57-e4d7-4d2a-9c58-db050830c7d5"
+ "e3d51d26-717b-4747-bfb7-88b16f2a82f9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034730Z:a6101e57-e4d7-4d2a-9c58-db050830c7d5"
+ "AUSTRALIAEAST:20180607T142014Z:e3d51d26-717b-4747-bfb7-88b16f2a82f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:29 GMT"
+ "Thu, 07 Jun 2018 14:20:14 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3NS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNzEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3NS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM05TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNzEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU56RXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2437,43 +2533,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14994"
],
"x-ms-request-id": [
- "df5640ba-40c7-4795-a8f2-eb270efe0737"
+ "7c35e8a5-a10f-4b6b-92cb-efe8807983f0"
],
"x-ms-correlation-request-id": [
- "df5640ba-40c7-4795-a8f2-eb270efe0737"
+ "7c35e8a5-a10f-4b6b-92cb-efe8807983f0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034745Z:df5640ba-40c7-4795-a8f2-eb270efe0737"
+ "AUSTRALIAEAST:20180607T142030Z:7c35e8a5-a10f-4b6b-92cb-efe8807983f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:47:45 GMT"
+ "Thu, 07 Jun 2018 14:20:29 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3NS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNzEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3NS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM05TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNzEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU56RXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2487,47 +2586,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14993"
],
"x-ms-request-id": [
- "6e8812ff-5cbd-420e-8831-64d8becbd80c"
+ "df554dde-0408-44bc-ba80-243f17449313"
],
"x-ms-correlation-request-id": [
- "6e8812ff-5cbd-420e-8831-64d8becbd80c"
+ "df554dde-0408-44bc-ba80-243f17449313"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034800Z:6e8812ff-5cbd-420e-8831-64d8becbd80c"
+ "AUSTRALIAEAST:20180607T142045Z:df554dde-0408-44bc-ba80-243f17449313"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:48:00 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3NS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 14:20:45 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3NS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM05TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNzEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU56RXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2542,25 +2638,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14992"
],
"x-ms-request-id": [
- "556e228d-8a9c-4990-872a-9625812bd153"
+ "cdce361c-3092-4ee7-af83-ad84bf6400ed"
],
"x-ms-correlation-request-id": [
- "556e228d-8a9c-4990-872a-9625812bd153"
+ "cdce361c-3092-4ee7-af83-ad84bf6400ed"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T034816Z:556e228d-8a9c-4990-872a-9625812bd153"
+ "AUSTRALIAEAST:20180607T142046Z:cdce361c-3092-4ee7-af83-ad84bf6400ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:48:15 GMT"
+ "Thu, 07 Jun 2018 14:20:46 GMT"
]
},
"StatusCode": 200
@@ -2568,13 +2667,13 @@
],
"Names": {
"": [
- "ps675",
- "ps375",
- "ps7748"
+ "ps9271",
+ "ps1067",
+ "ps9134"
],
"Test-DataLakeAnalyticsComputePolicy": [
- "ps2080",
- "ps9133"
+ "ps5409",
+ "ps3764"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaFirewallRules.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaFirewallRules.json
index dbbb925275d7..0bc467ca6f41 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaFirewallRules.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaFirewallRules.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "0f7f492c-4eea-4537-9d36-9399746bd39d"
+ "788fe662-b4e0-4eb4-a9d7-b2c6560e9753"
],
"x-ms-correlation-request-id": [
- "0f7f492c-4eea-4537-9d36-9399746bd39d"
+ "788fe662-b4e0-4eb4-a9d7-b2c6560e9753"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032621Z:0f7f492c-4eea-4537-9d36-9399746bd39d"
+ "AUSTRALIAEAST:20180607T135512Z:788fe662-b4e0-4eb4-a9d7-b2c6560e9753"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:21 GMT"
+ "Thu, 07 Jun 2018 13:55:11 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,49 +76,61 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14998"
],
"x-ms-request-id": [
- "f6b56209-94e2-415f-a024-6275fa883903"
+ "645b8e48-cd91-40bb-b38f-3845d8fbb9b6"
],
"x-ms-correlation-request-id": [
- "f6b56209-94e2-415f-a024-6275fa883903"
+ "645b8e48-cd91-40bb-b38f-3845d8fbb9b6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032621Z:f6b56209-94e2-415f-a024-6275fa883903"
+ "AUSTRALIAEAST:20180607T135512Z:645b8e48-cd91-40bb-b38f-3845d8fbb9b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:21 GMT"
+ "Thu, 07 Jun 2018 13:55:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps609?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjA5P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1481?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "af61d6dc-bf5d-4b48-8524-d6ec06f0a9db"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609\",\r\n \"name\": \"ps609\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481\",\r\n \"name\": \"ps1481\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "164"
+ "166"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,52 +142,55 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-request-id": [
- "111bdb84-e1bd-409e-a355-6128bacafedf"
+ "7a6f29ca-6c30-4056-ad60-a894c41816aa"
],
"x-ms-correlation-request-id": [
- "111bdb84-e1bd-409e-a355-6128bacafedf"
+ "7a6f29ca-6c30-4056-ad60-a894c41816aa"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032626Z:111bdb84-e1bd-409e-a355-6128bacafedf"
+ "AUSTRALIAEAST:20180607T135524Z:7a6f29ca-6c30-4056-ad60-a894c41816aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:25 GMT"
+ "Thu, 07 Jun 2018 13:55:24 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a1ff97a-1ba4-4837-bd32-8dd41f10e471"
+ "4f5360aa-1578-4ec8-a333-c0c0add03085"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2160' under resource group 'ps609' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1252' under resource group 'ps1481' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "152"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -187,49 +205,52 @@
"gateway"
],
"x-ms-request-id": [
- "1d109088-bfcd-4296-b700-c0e8750179cc"
+ "8f1f9c3f-c170-4862-b2d5-2cb16d85d5e5"
],
"x-ms-correlation-request-id": [
- "1d109088-bfcd-4296-b700-c0e8750179cc"
+ "8f1f9c3f-c170-4862-b2d5-2cb16d85d5e5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032627Z:1d109088-bfcd-4296-b700-c0e8750179cc"
+ "AUSTRALIAEAST:20180607T135526Z:8f1f9c3f-c170-4862-b2d5-2cb16d85d5e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:26 GMT"
+ "Thu, 07 Jun 2018 13:55:26 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b34df7d7-13f2-4dac-8463-3c8c938c2e67"
+ "ad6fc8bd-d986-4868-abcc-ddf03ac4d0df"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2160' under resource group 'ps609' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1252' under resource group 'ps1481' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "152"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -244,49 +265,52 @@
"gateway"
],
"x-ms-request-id": [
- "d820b3e7-0631-4bf0-9488-78fbea0a4783"
+ "99e7f9df-e893-42cb-80b3-e10e26f6f619"
],
"x-ms-correlation-request-id": [
- "d820b3e7-0631-4bf0-9488-78fbea0a4783"
+ "99e7f9df-e893-42cb-80b3-e10e26f6f619"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032706Z:d820b3e7-0631-4bf0-9488-78fbea0a4783"
+ "AUSTRALIAEAST:20180607T135611Z:99e7f9df-e893-42cb-80b3-e10e26f6f619"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:06 GMT"
+ "Thu, 07 Jun 2018 13:56:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f5c03c73-4ae5-446d-9593-566c3356d1cb"
+ "17c6901e-a778-4fd6-94d3-a01878d771ac"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2160' under resource group 'ps609' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1252' under resource group 'ps1481' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "152"
+ "153"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -301,43 +325,46 @@
"gateway"
],
"x-ms-request-id": [
- "e5457c1e-e53d-4d27-9c85-6c2b2e287e2d"
+ "24045154-cddf-4dba-8f85-a756c6affadb"
],
"x-ms-correlation-request-id": [
- "e5457c1e-e53d-4d27-9c85-6c2b2e287e2d"
+ "24045154-cddf-4dba-8f85-a756c6affadb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032706Z:e5457c1e-e53d-4d27-9c85-6c2b2e287e2d"
+ "AUSTRALIAEAST:20180607T135612Z:24045154-cddf-4dba-8f85-a756c6affadb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:06 GMT"
+ "Thu, 07 Jun 2018 13:56:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:11.194938Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:56:17.5141549Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1213"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -349,31 +376,28 @@
"no-cache"
],
"x-ms-request-id": [
- "05d01815-de1b-482e-893a-3ec1061b3cec"
+ "2bb663c7-52ad-447a-885b-7be2152d86e3"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14988"
],
"x-ms-correlation-request-id": [
- "a3385ddb-c7da-4232-9ece-40fc3eb63dac"
+ "8559e7c8-f854-4ab5-afed-b44ec89ebeea"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032741Z:a3385ddb-c7da-4232-9ece-40fc3eb63dac"
+ "AUSTRALIAEAST:20180607T135652Z:8559e7c8-f854-4ab5-afed-b44ec89ebeea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:41 GMT"
+ "Thu, 07 Jun 2018 13:56:51 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -388,28 +412,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f7e349f-0d4a-4cac-97b0-964b755577b4"
+ "e817a46e-0af7-4601-a62d-7b684bd4be38"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:11.194938Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:56:17.5141549Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1213"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -421,31 +445,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d4bb0e76-1361-48c6-8de1-ace24b2665d3"
+ "14f3f1fd-853a-42b6-82af-7df21b492ce5"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14987"
],
"x-ms-correlation-request-id": [
- "0fa01a17-d925-4711-a1a8-dc641b5b8739"
+ "916bd565-d44b-4f16-a116-dbfc75ca1224"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032742Z:0fa01a17-d925-4711-a1a8-dc641b5b8739"
+ "AUSTRALIAEAST:20180607T135653Z:916bd565-d44b-4f16-a116-dbfc75ca1224"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:42 GMT"
+ "Thu, 07 Jun 2018 13:56:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -460,28 +481,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c1246be-90b2-469a-b948-7dfd6d4ecb81"
+ "f5e87a3e-3f17-4106-9082-92c4ba4b4a27"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:11.194938Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:56:17.5141549Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1213"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -493,31 +514,28 @@
"no-cache"
],
"x-ms-request-id": [
- "684a7aca-c6ee-4d4e-b464-05e3d3146cde"
+ "62269372-84fc-44d4-86f4-a091d93003e9"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14986"
],
"x-ms-correlation-request-id": [
- "e634f61c-dbcd-4c16-aa5f-cdd881e522d7"
+ "32b00b76-bca9-48a6-92d3-a6aa4f0bb189"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032743Z:e634f61c-dbcd-4c16-aa5f-cdd881e522d7"
+ "AUSTRALIAEAST:20180607T135655Z:32b00b76-bca9-48a6-92d3-a6aa4f0bb189"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:43 GMT"
+ "Thu, 07 Jun 2018 13:56:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -532,28 +550,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de92d724-040e-430f-bc5a-26d3f5c23afe"
+ "a34c7924-f529-428d-b328-5ddb4d74f7a9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:11.194938Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:56:17.5141549Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1213"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -565,31 +583,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7fe2a285-e522-4c98-bf89-bdb5c5a21f84"
+ "f991d907-df74-45b5-9048-0e92f716cd1f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14984"
],
"x-ms-correlation-request-id": [
- "abe518e4-2c27-4e87-a6e4-8c9d5954a4c8"
+ "6487bd53-1723-459c-bbd6-adfc58bec8d7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032744Z:abe518e4-2c27-4e87-a6e4-8c9d5954a4c8"
+ "AUSTRALIAEAST:20180607T135657Z:6487bd53-1723-459c-bbd6-adfc58bec8d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:44 GMT"
+ "Thu, 07 Jun 2018 13:56:57 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -604,28 +619,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "359db919-9b4b-4b25-8ea0-b2d63b988bc1"
+ "68835a69-7f46-4b93-8cec-7bcc8c17ad97"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:11.194938Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:56:17.5141549Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1213"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -637,31 +652,28 @@
"no-cache"
],
"x-ms-request-id": [
- "265a1849-7e53-4e66-8359-329e74061340"
+ "e6ac9f3b-66b1-4089-8669-fd509ddf869b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14983"
],
"x-ms-correlation-request-id": [
- "75983df5-6979-4c05-9fc9-28a53afe1c42"
+ "ff54ac8d-d296-485f-9759-cbfc6f9c7698"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032745Z:75983df5-6979-4c05-9fc9-28a53afe1c42"
+ "AUSTRALIAEAST:20180607T135658Z:ff54ac8d-d296-485f-9759-cbfc6f9c7698"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:44 GMT"
+ "Thu, 07 Jun 2018 13:56:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -676,28 +688,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53684bdf-fa27-45ad-b988-3a54d32d1d38"
+ "82c9bb80-ffe0-494a-8ac7-e0991e45c52c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:46.4227292Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:57:00.9819515Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1212"
+ "1233"
],
"Content-Type": [
"application/json"
@@ -709,31 +721,28 @@
"no-cache"
],
"x-ms-request-id": [
- "290d1304-a96b-4860-bab1-7c61b2cb4ccd"
+ "ca48f425-8d0b-4c8e-b0cf-aa2494654b7f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14966"
+ "14981"
],
"x-ms-correlation-request-id": [
- "c182b638-87c2-4a90-9a99-de98e2f95fcd"
+ "d9e680bc-edf3-4801-96a5-5364b1c25f4e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032748Z:c182b638-87c2-4a90-9a99-de98e2f95fcd"
+ "AUSTRALIAEAST:20180607T135704Z:d9e680bc-edf3-4801-96a5-5364b1c25f4e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:48 GMT"
+ "Thu, 07 Jun 2018 13:57:04 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -748,28 +757,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "33b09a68-38f1-4b09-ac24-cd9b80d4d983"
+ "6900344f-67e4-485a-8a45-18ed0087f9c6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"ps9922\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:46.4227292Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"ps5560\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:57:00.9819515Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1300"
+ "1321"
],
"Content-Type": [
"application/json"
@@ -781,31 +790,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a0412994-8876-45de-b824-72133af3e8a5"
+ "97d223b0-f55e-4f47-9c09-0c04f25cda2e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14977"
],
"x-ms-correlation-request-id": [
- "ddcf1e1b-4200-4dc7-a683-89a1ebbba6a9"
+ "a00ea48d-e9f7-4865-955c-8e160578fcdd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032752Z:ddcf1e1b-4200-4dc7-a683-89a1ebbba6a9"
+ "AUSTRALIAEAST:20180607T135711Z:a00ea48d-e9f7-4865-955c-8e160578fcdd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:52 GMT"
+ "Thu, 07 Jun 2018 13:57:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -820,28 +826,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc3c009f-f16c-41c4-86d6-d8bf027594a5"
+ "460a8040-ed9d-4b22-adbb-0ee5c405ff83"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:46.4227292Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:57:00.9819515Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1212"
+ "1233"
],
"Content-Type": [
"application/json"
@@ -853,31 +859,28 @@
"no-cache"
],
"x-ms-request-id": [
- "33c09ecf-cb45-4a1f-aa90-69e1f5557cf6"
+ "6c057f48-82e8-4f89-8bdb-47ee94f4c4ee"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14974"
],
"x-ms-correlation-request-id": [
- "aef0b314-ce27-4dfb-ab3c-57d7b805e0c8"
+ "7519c9f8-35b1-407d-af33-e5fddc1eaf01"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032756Z:aef0b314-ce27-4dfb-ab3c-57d7b805e0c8"
+ "AUSTRALIAEAST:20180607T135717Z:7519c9f8-35b1-407d-af33-e5fddc1eaf01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:55 GMT"
+ "Thu, 07 Jun 2018 13:57:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -898,25 +901,25 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fbd6a76-0860-4d35-867e-1743013a4f6f"
+ "4e3e8a47-b03f-4a87-a47e-c3ba4dde13f7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "528"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -924,41 +927,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "f0055790-5ea5-414d-9370-de1b85c2c55b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "a0eec175-58dc-4b7a-b1a1-5b89b6733341"
],
"x-ms-correlation-request-id": [
- "fe48353f-a2a8-44a6-8b3b-8865e79e0962"
+ "a0eec175-58dc-4b7a-b1a1-5b89b6733341"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032627Z:fe48353f-a2a8-44a6-8b3b-8865e79e0962"
+ "AUSTRALIAEAST:20180607T135526Z:a0eec175-58dc-4b7a-b1a1-5b89b6733341"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:27 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 13:55:26 GMT"
]
},
"StatusCode": 200
@@ -970,22 +961,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "086b3afe-79d3-417b-9e49-e10efc26f424"
+ "d8b01e47-a199-4918-884d-944f00e5b155"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:11.194938Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:56:17.5141549Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1015"
+ "499"
],
"Content-Type": [
"application/json"
@@ -997,31 +988,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ede245ca-b392-442b-a4bf-e0744a2ee74f"
+ "8114469a-b349-4096-b3ce-56d4286bc419"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14985"
],
"x-ms-correlation-request-id": [
- "4cff4522-f2ba-4c1b-a6d7-8a482a1eb559"
+ "9e1d423a-fa0b-44bf-bd45-8d2f2d2128e6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032744Z:4cff4522-f2ba-4c1b-a6d7-8a482a1eb559"
+ "AUSTRALIAEAST:20180607T135656Z:9e1d423a-fa0b-44bf-bd45-8d2f2d2128e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:43 GMT"
+ "Thu, 07 Jun 2018 13:56:56 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1042,22 +1030,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e0452f0c-4afa-49d2-a994-17bdb5d0a3a7"
+ "6ff2643c-4902-44cb-abc9-1f73b7a75b47"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:46.4227292Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:57:00.9819515Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1016"
+ "499"
],
"Content-Type": [
"application/json"
@@ -1069,31 +1057,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d857467b-5007-496e-bc22-a93ca38b7dc9"
+ "a650a89f-827f-46c4-9fa2-bf975b7e0625"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14982"
],
"x-ms-correlation-request-id": [
- "99f8d53e-749a-4e6a-886f-45f9cff2fa27"
+ "1de5f90c-1211-4963-b402-1987051b95fc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032748Z:99f8d53e-749a-4e6a-886f-45f9cff2fa27"
+ "AUSTRALIAEAST:20180607T135703Z:1de5f90c-1211-4963-b402-1987051b95fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:47 GMT"
+ "Thu, 07 Jun 2018 13:57:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1114,22 +1099,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94b286e0-7ec7-4645-9197-f7975f2960ee"
+ "5c3256fb-f8a2-4b24-a19a-369ef82c6594"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:46.4227292Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:57:00.9819515Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1016"
+ "499"
],
"Content-Type": [
"application/json"
@@ -1141,31 +1126,28 @@
"no-cache"
],
"x-ms-request-id": [
- "0e1c32cc-ac26-432b-a3c4-db55b4c5a512"
+ "f748e47d-0762-4437-862c-8a47fe0fd07a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14980"
],
"x-ms-correlation-request-id": [
- "e88e8193-ea3b-43e2-9432-e14a927d5026"
+ "56228c5f-345e-4a4f-a4b0-df18ede1874d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032750Z:e88e8193-ea3b-43e2-9432-e14a927d5026"
+ "AUSTRALIAEAST:20180607T135707Z:56228c5f-345e-4a4f-a4b0-df18ede1874d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:49 GMT"
+ "Thu, 07 Jun 2018 13:57:07 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1186,22 +1168,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7eb9d2e9-5f4b-4dfe-913f-95fec286b071"
+ "e0913e0d-fcf1-4ef9-951f-7463a36a62a2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:46.4227292Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:57:00.9819515Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1016"
+ "499"
],
"Content-Type": [
"application/json"
@@ -1213,31 +1195,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d722d8a6-7585-4002-ac58-b135df34f1e2"
+ "4f1c4379-83ce-48b3-ac4a-2c797e41c86e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14978"
],
"x-ms-correlation-request-id": [
- "9066976d-f438-4fc3-9f10-c729bf1b8bdc"
+ "24a5edaf-1919-4698-bca9-d8c202c222c2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032751Z:9066976d-f438-4fc3-9f10-c729bf1b8bdc"
+ "AUSTRALIAEAST:20180607T135710Z:24a5edaf-1919-4698-bca9-d8c202c222c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:51 GMT"
+ "Thu, 07 Jun 2018 13:57:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1258,22 +1237,22 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97c33675-88ce-4d1e-8090-1eccde03a8e5"
+ "509e3183-78b3-4191-9b9a-6a128da6a250"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:46.4227292Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:57:00.9819515Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1016"
+ "499"
],
"Content-Type": [
"application/json"
@@ -1285,31 +1264,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a2b3ab03-7a08-4673-a543-bafd115ce247"
+ "fab78117-3e03-4ee6-8f8b-ed1d814d3dca"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14976"
],
"x-ms-correlation-request-id": [
- "ecb76d9d-3ae6-4687-8718-0d19b8565698"
+ "b9c4914e-2fa6-4989-8e9b-d34e253d5d35"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032754Z:ecb76d9d-3ae6-4687-8718-0d19b8565698"
+ "AUSTRALIAEAST:20180607T135714Z:b9c4914e-2fa6-4989-8e9b-d34e253d5d35"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:54 GMT"
+ "Thu, 07 Jun 2018 13:57:13 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1324,25 +1300,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc0OTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30be61f3-e7d5-469f-aa96-c6b8b590144f"
+ "a1af8d53-b12f-4517-9bd6-161e2fb2e887"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7492' under resource group 'ps609' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps379' under resource group 'ps1481' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"148"
@@ -1360,43 +1336,46 @@
"gateway"
],
"x-ms-request-id": [
- "a49a9fa0-92f4-433c-851e-9f72e3fab189"
+ "6fbe6080-1c26-494f-bbe1-c48f93b1f7eb"
],
"x-ms-correlation-request-id": [
- "a49a9fa0-92f4-433c-851e-9f72e3fab189"
+ "6fbe6080-1c26-494f-bbe1-c48f93b1f7eb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032628Z:a49a9fa0-92f4-433c-851e-9f72e3fab189"
+ "AUSTRALIAEAST:20180607T135528Z:6fbe6080-1c26-494f-bbe1-c48f93b1f7eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:28 GMT"
+ "Thu, 07 Jun 2018 13:55:28 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc0OTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7492.azuredatalakestore.net\",\r\n \"accountId\": \"c5f6f9f8-dddf-4c57-a486-be3a25bf5734\",\r\n \"creationTime\": \"2017-12-07T03:26:35.1616351Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:26:35.1616351Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"06e2437a-f4d3-4ec0-9575-5c957921c103\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492\",\r\n \"name\": \"ps7492\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps379.azuredatalakestore.net\",\r\n \"accountId\": \"7baa4be7-f560-4dc2-b801-aae99f3a3d14\",\r\n \"creationTime\": \"2018-06-07T13:55:36.486105Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:55:36.486105Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9b672670-2040-4306-ae17-9916ea31e6be\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379\",\r\n \"name\": \"ps379\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "907"
+ "987"
],
"Content-Type": [
"application/json"
@@ -1408,31 +1387,28 @@
"no-cache"
],
"x-ms-request-id": [
- "41901165-08c0-49ae-9e3b-46f6eddc1e78"
+ "6aee2f88-24fd-473c-9e3c-bd4f6c88b61b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14972"
],
"x-ms-correlation-request-id": [
- "5ee22f7e-90a5-4825-b20e-eede3a406aae"
+ "3b0d5160-517a-496a-bc8a-e9744ede901c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032705Z:5ee22f7e-90a5-4825-b20e-eede3a406aae"
+ "AUSTRALIAEAST:20180607T135611Z:3b0d5160-517a-496a-bc8a-e9744ede901c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:04 GMT"
+ "Thu, 07 Jun 2018 13:56:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1447,28 +1423,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc0OTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "edf8e72d-d9e8-426e-9164-faeb07795cb7"
+ "a18442ff-33b0-48d2-b4ac-415415b5925e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7492.azuredatalakestore.net\",\r\n \"accountId\": \"c5f6f9f8-dddf-4c57-a486-be3a25bf5734\",\r\n \"creationTime\": \"2017-12-07T03:26:35.1616351Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:26:35.1616351Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"06e2437a-f4d3-4ec0-9575-5c957921c103\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492\",\r\n \"name\": \"ps7492\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps379.azuredatalakestore.net\",\r\n \"accountId\": \"7baa4be7-f560-4dc2-b801-aae99f3a3d14\",\r\n \"creationTime\": \"2018-06-07T13:55:36.486105Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:55:36.486105Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9b672670-2040-4306-ae17-9916ea31e6be\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379\",\r\n \"name\": \"ps379\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "907"
+ "987"
],
"Content-Type": [
"application/json"
@@ -1480,31 +1456,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c6177f49-a19d-4e0a-a921-e8278b8f81ca"
+ "3707ead5-6c00-434a-8450-d75b77dd0774"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14971"
],
"x-ms-correlation-request-id": [
- "c3b207fa-66b5-4dea-ae66-3f14ba77118e"
+ "1c6a25f9-2b6e-4f50-bc90-d35c4d57da87"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032759Z:c3b207fa-66b5-4dea-ae66-3f14ba77118e"
+ "AUSTRALIAEAST:20180607T135722Z:1c6a25f9-2b6e-4f50-bc90-d35c4d57da87"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:59 GMT"
+ "Thu, 07 Jun 2018 13:57:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1519,34 +1492,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc0OTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "1661af5a-ecfc-4654-950e-1e3658a9ed9c"
+ "6494514d-cbac-4d9a-b205-1d3ca430c517"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c5f6f9f8-dddf-4c57-a486-be3a25bf5734\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492\",\r\n \"name\": \"ps7492\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7baa4be7-f560-4dc2-b801-aae99f3a3d14\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379\",\r\n \"name\": \"ps379\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "561"
+ "558"
],
"Content-Type": [
"application/json"
@@ -1561,37 +1534,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c5f6f9f8-dddf-4c57-a486-be3a25bf57340?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7baa4be7-f560-4dc2-b801-aae99f3a3d140?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "dd127f6e-f42d-4a49-920a-20ced0aa54eb"
+ "bac452f1-7330-4bbc-94a5-44065a2b00d2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1196"
],
"x-ms-correlation-request-id": [
- "d2dbab25-cd6f-43cf-afd0-1806a519f9d0"
+ "4b5a3809-5feb-436b-b461-88a8b0915bda"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032633Z:d2dbab25-cd6f-43cf-afd0-1806a519f9d0"
+ "AUSTRALIAEAST:20180607T135535Z:4b5a3809-5feb-436b-b461-88a8b0915bda"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:32 GMT"
+ "Thu, 07 Jun 2018 13:55:35 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1606,13 +1576,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c5f6f9f8-dddf-4c57-a486-be3a25bf57340?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M1ZjZmOWY4LWRkZGYtNGM1Ny1hNDg2LWJlM2EyNWJmNTczNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7baa4be7-f560-4dc2-b801-aae99f3a3d140?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzdiYWE0YmU3LWY1NjAtNGRjMi1iODAxLWFhZTk5ZjNhM2QxNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1633,31 +1603,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c0239457-50e0-4f80-b2db-a268ab57ae3a"
+ "947d1116-7541-4a74-bba5-0123058c5d29"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14975"
],
"x-ms-correlation-request-id": [
- "0f48896d-175d-4e5e-aa9a-b5fa0078bc47"
+ "a62b41ff-70a8-4cf1-8a89-386a8af92e74"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032643Z:0f48896d-175d-4e5e-aa9a-b5fa0078bc47"
+ "AUSTRALIAEAST:20180607T135547Z:a62b41ff-70a8-4cf1-8a89-386a8af92e74"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:43 GMT"
+ "Thu, 07 Jun 2018 13:55:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1672,13 +1639,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c5f6f9f8-dddf-4c57-a486-be3a25bf57340?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M1ZjZmOWY4LWRkZGYtNGM1Ny1hNDg2LWJlM2EyNWJmNTczNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7baa4be7-f560-4dc2-b801-aae99f3a3d140?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzdiYWE0YmU3LWY1NjAtNGRjMi1iODAxLWFhZTk5ZjNhM2QxNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1699,31 +1666,28 @@
"no-cache"
],
"x-ms-request-id": [
- "3b9efcc8-9d54-4263-98dc-699a1e34213b"
+ "55da95df-9753-40d9-b569-cfcf07d4eefa"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14974"
],
"x-ms-correlation-request-id": [
- "cef4bab8-fee6-40b3-8caf-287d827b1263"
+ "38817daa-3afe-49eb-aae7-9d3f23cd7c64"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032654Z:cef4bab8-fee6-40b3-8caf-287d827b1263"
+ "AUSTRALIAEAST:20180607T135558Z:38817daa-3afe-49eb-aae7-9d3f23cd7c64"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:26:54 GMT"
+ "Thu, 07 Jun 2018 13:55:57 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1738,13 +1702,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c5f6f9f8-dddf-4c57-a486-be3a25bf57340?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M1ZjZmOWY4LWRkZGYtNGM1Ny1hNDg2LWJlM2EyNWJmNTczNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7baa4be7-f560-4dc2-b801-aae99f3a3d140?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzdiYWE0YmU3LWY1NjAtNGRjMi1iODAxLWFhZTk5ZjNhM2QxNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1765,31 +1729,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1c71179b-3177-4c59-8553-4e0c86107a03"
+ "aeb603ca-b606-4e79-87f7-b2ad7760afe7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14973"
],
"x-ms-correlation-request-id": [
- "7d91b69b-16b8-43b5-9351-abbfbb67d3ce"
+ "e2552057-b919-49bf-b913-a83e4c1ed0e9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032705Z:7d91b69b-16b8-43b5-9351-abbfbb67d3ce"
+ "AUSTRALIAEAST:20180607T135609Z:e2552057-b919-49bf-b913-a83e4c1ed0e9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:04 GMT"
+ "Thu, 07 Jun 2018 13:56:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1804,34 +1765,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7492\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps379\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "196"
],
"x-ms-client-request-id": [
- "bf2126b8-bd7a-4e59-a8f8-db23e271af57"
+ "561cc86e-533e-4e76-a7ba-71ab74bce786"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "488"
+ "485"
],
"Content-Type": [
"application/json"
@@ -1846,10 +1807,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/c8544a9e-dd71-4f5d-8a49-fd3305fbbabf0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/f1f10eec-20e6-4b37-8523-fb7dabe81e280?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "a1d9200e-a497-41ab-a02b-c8cc09cb83c5"
+ "76728147-7b23-4fb4-8cfa-c30cd115a6dc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1858,25 +1819,22 @@
"1198"
],
"x-ms-correlation-request-id": [
- "ab29d496-4531-428a-b58e-44fd7c2aaf34"
+ "6e2d7ae9-6e7c-42a8-a299-9399ec797064"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032708Z:ab29d496-4531-428a-b58e-44fd7c2aaf34"
+ "AUSTRALIAEAST:20180607T135616Z:6e2d7ae9-6e7c-42a8-a299-9399ec797064"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:08 GMT"
+ "Thu, 07 Jun 2018 13:56:16 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1891,16 +1849,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/c8544a9e-dd71-4f5d-8a49-fd3305fbbabf0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9jODU0NGE5ZS1kZDcxLTRmNWQtOGE0OS1mZDMzMDVmYmJhYmYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/f1f10eec-20e6-4b37-8523-fb7dabe81e280?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9mMWYxMGVlYy0yMGU2LTRiMzctODUyMy1mYjdkYWJlODFlMjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1918,7 +1876,7 @@
"no-cache"
],
"x-ms-request-id": [
- "32c38eda-d873-4971-b67f-11de05981bff"
+ "d8578b46-e85d-4a3d-8df6-ef8695e9caf4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1927,22 +1885,19 @@
"14991"
],
"x-ms-correlation-request-id": [
- "26fc6974-9e8f-41d6-b403-809c4c56fd20"
+ "817f18f1-f6bf-4feb-925a-79ac73d1e050"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032719Z:26fc6974-9e8f-41d6-b403-809c4c56fd20"
+ "AUSTRALIAEAST:20180607T135628Z:817f18f1-f6bf-4feb-925a-79ac73d1e050"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:19 GMT"
+ "Thu, 07 Jun 2018 13:56:28 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1957,16 +1912,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/c8544a9e-dd71-4f5d-8a49-fd3305fbbabf0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9jODU0NGE5ZS1kZDcxLTRmNWQtOGE0OS1mZDMzMDVmYmJhYmYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/f1f10eec-20e6-4b37-8523-fb7dabe81e280?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9mMWYxMGVlYy0yMGU2LTRiMzctODUyMy1mYjdkYWJlODFlMjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1984,31 +1939,28 @@
"no-cache"
],
"x-ms-request-id": [
- "212bcd2b-827b-435d-a76e-b55a3c1724b7"
+ "427ae0ab-3336-4588-974d-c2590faf5944"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14990"
],
"x-ms-correlation-request-id": [
- "3b368ed5-6fd7-4f51-9107-20cee538e707"
+ "83938449-9fd9-4a1e-8490-7ba509b9ad01"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032730Z:3b368ed5-6fd7-4f51-9107-20cee538e707"
+ "AUSTRALIAEAST:20180607T135639Z:83938449-9fd9-4a1e-8490-7ba509b9ad01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:29 GMT"
+ "Thu, 07 Jun 2018 13:56:39 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2023,16 +1975,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/c8544a9e-dd71-4f5d-8a49-fd3305fbbabf0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9jODU0NGE5ZS1kZDcxLTRmNWQtOGE0OS1mZDMzMDVmYmJhYmYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/f1f10eec-20e6-4b37-8523-fb7dabe81e280?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9mMWYxMGVlYy0yMGU2LTRiMzctODUyMy1mYjdkYWJlODFlMjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -2050,31 +2002,28 @@
"no-cache"
],
"x-ms-request-id": [
- "418bbdcf-8a0c-45ba-9f46-8753f157f576"
+ "51472881-cbb3-4551-813a-d40761349bb3"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14989"
],
"x-ms-correlation-request-id": [
- "5a960c5c-e284-4165-b058-16ee50fc3d05"
+ "ce449afc-f2b0-4b6e-8b7d-022575aaf1a3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032741Z:5a960c5c-e284-4165-b058-16ee50fc3d05"
+ "AUSTRALIAEAST:20180607T135650Z:ce449afc-f2b0-4b6e-8b7d-022575aaf1a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:40 GMT"
+ "Thu, 07 Jun 2018 13:56:50 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2089,8 +2038,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"tags\": {},\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\"\r\n }\r\n}",
"RequestHeaders": {
@@ -2101,22 +2050,22 @@
"116"
],
"x-ms-client-request-id": [
- "48daf98e-fe2d-4f65-80d0-659235424a71"
+ "4e10003e-dcb8-4144-b8e7-f83c78a4cd16"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7492\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7492\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c8544a9e-dd71-4f5d-8a49-fd3305fbbabf\",\r\n \"creationTime\": \"2017-12-07T03:27:11.194938Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:27:46.4227292Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160\",\r\n \"name\": \"ps2160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps379\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps379\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1252.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f1f10eec-20e6-4b37-8523-fb7dabe81e28\",\r\n \"creationTime\": \"2018-06-07T13:56:17.5141549Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:57:00.9819515Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252\",\r\n \"name\": \"ps1252\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "944"
+ "965"
],
"Content-Type": [
"application/json"
@@ -2128,7 +2077,7 @@
"no-cache"
],
"x-ms-request-id": [
- "e87fac7b-abb7-414f-bf75-29515928ea64"
+ "19aeeeac-c5d5-4ee2-b919-f63c3d00a614"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2137,22 +2086,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "d0b7cb10-c40e-4028-a65f-11939b711457"
+ "02a5b73e-6048-440f-94d9-73ec1785f743"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032747Z:d0b7cb10-c40e-4028-a65f-11939b711457"
+ "AUSTRALIAEAST:20180607T135701Z:02a5b73e-6048-440f-94d9-73ec1785f743"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:47 GMT"
+ "Thu, 07 Jun 2018 13:57:01 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2167,8 +2113,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160/firewallRules/ps9922?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwL2ZpcmV3YWxsUnVsZXMvcHM5OTIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252/firewallRules/ps5560?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mi9maXJld2FsbFJ1bGVzL3BzNTU2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n }\r\n}",
"RequestHeaders": {
@@ -2179,22 +2125,22 @@
"97"
],
"x-ms-client-request-id": [
- "a09ba648-8846-4390-9084-9089b3ac3042"
+ "2db34ac7-8c88-45c9-adf8-b3752da08070"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160/firewallRules/ps9922\",\r\n \"name\": \"ps9922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252/firewallRules/ps5560\",\r\n \"name\": \"ps5560\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "303"
+ "304"
],
"Content-Type": [
"application/json"
@@ -2206,31 +2152,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d8016bac-33b5-490d-b720-f6853a5f82ba"
+ "301cc4f1-119d-4b2e-8407-5f4faedeea06"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1196"
],
"x-ms-correlation-request-id": [
- "ee9ea55f-e765-4ce7-9a95-e2721d2cf9e7"
+ "a6601f75-8e7c-4dfb-8479-8a5b8d8300ac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032749Z:ee9ea55f-e765-4ce7-9a95-e2721d2cf9e7"
+ "AUSTRALIAEAST:20180607T135706Z:a6601f75-8e7c-4dfb-8479-8a5b8d8300ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:49 GMT"
+ "Thu, 07 Jun 2018 13:57:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2245,28 +2188,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160/firewallRules/ps9922?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwL2ZpcmV3YWxsUnVsZXMvcHM5OTIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252/firewallRules/ps5560?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mi9maXJld2FsbFJ1bGVzL3BzNTU2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d93a07d7-2ef8-4ece-8e5e-f769c46a050c"
+ "81352736-8edf-4bd0-aa45-939bafff1044"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160/firewallRules/ps9922\",\r\n \"name\": \"ps9922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252/firewallRules/ps5560\",\r\n \"name\": \"ps5560\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "303"
+ "304"
],
"Content-Type": [
"application/json"
@@ -2278,31 +2221,28 @@
"no-cache"
],
"x-ms-request-id": [
- "379c9e2a-f89e-49ba-b274-823483ce7ff1"
+ "2052d05d-f46c-4303-bbaa-9cae400f1392"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14979"
],
"x-ms-correlation-request-id": [
- "02811444-ee4b-4cab-9386-645f29069fd0"
+ "a853d8d5-c73b-4183-9d29-d9843aee8346"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032751Z:02811444-ee4b-4cab-9386-645f29069fd0"
+ "AUSTRALIAEAST:20180607T135708Z:a853d8d5-c73b-4183-9d29-d9843aee8346"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:51 GMT"
+ "Thu, 07 Jun 2018 13:57:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2317,22 +2257,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160/firewallRules/ps9922?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwL2ZpcmV3YWxsUnVsZXMvcHM5OTIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252/firewallRules/ps5560?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mi9maXJld2FsbFJ1bGVzL3BzNTU2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca392273-e34a-4d02-b730-ec00f552c169"
+ "f898c2c5-d214-4c82-9e5d-69807a3f1b82"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}",
@@ -2350,31 +2290,28 @@
"no-cache"
],
"x-ms-request-id": [
- "4f4adc86-b413-4cd3-8c03-8de41f0c1435"
+ "b2f659bd-8cd8-45fe-a754-0d918aff5030"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14975"
],
"x-ms-correlation-request-id": [
- "b466ded1-3b4a-4e6b-9547-1e76f450e08e"
+ "3c4fa51d-a281-4a43-8d94-1596d80a6fb4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032755Z:b466ded1-3b4a-4e6b-9547-1e76f450e08e"
+ "AUSTRALIAEAST:20180607T135715Z:3c4fa51d-a281-4a43-8d94-1596d80a6fb4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:54 GMT"
+ "Thu, 07 Jun 2018 13:57:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2389,22 +2326,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160/firewallRules/ps9922?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwL2ZpcmV3YWxsUnVsZXMvcHM5OTIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252/firewallRules/ps5560?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mi9maXJld2FsbFJ1bGVzL3BzNTU2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "81e41d2d-b93b-4df0-9301-4afb408156cd"
+ "ce69c122-32b9-40e5-9fdd-911499064ed1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2419,28 +2356,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d07492e5-5a00-4b42-91a9-8a92b2891ce3"
+ "633b6abd-e2c9-4611-99ed-9543716f479b"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "ca69a74b-595e-4bd6-8428-2f918e6e1948"
+ "88901f41-7054-4320-88e7-706474ae946f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032753Z:ca69a74b-595e-4bd6-8428-2f918e6e1948"
+ "AUSTRALIAEAST:20180607T135713Z:88901f41-7054-4320-88e7-706474ae946f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:52 GMT"
+ "Thu, 07 Jun 2018 13:57:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2455,22 +2392,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeAnalytics/accounts/ps2160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHMvcHMyMTYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeAnalytics/accounts/ps1252?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTI1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b5debed-a0e7-4568-88b3-5bd2b31f00b6"
+ "868d2c29-d396-445b-ae08-32b0a8c61506"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2485,28 +2422,28 @@
"no-cache"
],
"x-ms-request-id": [
- "787b43de-5307-43cc-afbd-f476ad3ac830"
+ "6ad3a639-0406-4909-b674-b49feb6d14ec"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "f0bb4cca-dc8e-4ceb-b726-c715af52c8c7"
+ "60919d4d-3fe8-467c-89dc-b3e1f4b83c11"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032758Z:f0bb4cca-dc8e-4ceb-b726-c715af52c8c7"
+ "AUSTRALIAEAST:20180607T135721Z:60919d4d-3fe8-467c-89dc-b3e1f4b83c11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:27:58 GMT"
+ "Thu, 07 Jun 2018 13:57:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2521,19 +2458,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps609/providers/Microsoft.DataLakeStore/accounts/ps7492?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy9wczc0OTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNzk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2044e5e-0132-439a-a0a3-d55722dffa56"
+ "70f653e9-e5b8-47ef-bcc3-49ccda7a29ba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -2550,29 +2487,101 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7baa4be7-f560-4dc2-b801-aae99f3a3d141?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "aa082502-894c-4ceb-b79a-fac075bb98bb"
+ "d90b7cc7-2bf9-437b-a1fb-cbf1ee071c7e"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14994"
],
"x-ms-correlation-request-id": [
- "f7c08220-82c4-463b-b39b-fd2e2cb2be7e"
+ "5d8bb684-cf71-4a12-981f-85ce27248444"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032803Z:f7c08220-82c4-463b-b39b-fd2e2cb2be7e"
+ "AUSTRALIAEAST:20180607T135727Z:5d8bb684-cf71-4a12-981f-85ce27248444"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:28:02 GMT"
+ "Thu, 07 Jun 2018 13:57:26 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379/operationresults/1?api-version=2016-11-01"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/7baa4be7-f560-4dc2-b801-aae99f3a3d141?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzdiYWE0YmU3LWY1NjAtNGRjMi1iODAxLWFhZTk5ZjNhM2QxNDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e45e978e-ade7-4bf1-9139-3c7544541940"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-correlation-request-id": [
+ "3306aba2-86f8-4f92-805b-32ec223c8d16"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T135738Z:3306aba2-86f8-4f92-805b-32ec223c8d16"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 13:57:37 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2587,13 +2596,82 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps609?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjA5P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1481/providers/Microsoft.DataLakeStore/accounts/ps379/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMTQ4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNzkvb3BlcmF0aW9ucmVzdWx0cy8xP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3ce7808e-9c08-4bc3-8c6a-c8b0945cf78c"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-correlation-request-id": [
+ "d65fd795-9ea2-426a-a6bc-015a9b0fd92a"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T135739Z:d65fd795-9ea2-426a-a6bc-015a9b0fd92a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 13:57:39 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps1481?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "04eff927-bcb7-4bf0-a774-bc4443bbdeb5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2610,44 +2688,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-request-id": [
- "bb63800c-05ff-47b3-8219-9d032bc22e5f"
+ "cacb7954-3ab6-4051-bbdb-c1c96a4d2acb"
],
"x-ms-correlation-request-id": [
- "bb63800c-05ff-47b3-8219-9d032bc22e5f"
+ "cacb7954-3ab6-4051-bbdb-c1c96a4d2acb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032804Z:bb63800c-05ff-47b3-8219-9d032bc22e5f"
+ "AUSTRALIAEAST:20180607T135744Z:cacb7954-3ab6-4051-bbdb-c1c96a4d2acb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:28:03 GMT"
+ "Thu, 07 Jun 2018 13:57:43 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd09TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME9ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2668,40 +2749,43 @@
"14990"
],
"x-ms-request-id": [
- "03bb59ec-937b-4812-a258-be6833a05a6d"
+ "239c2c6e-04d2-43e1-bb47-adc794055274"
],
"x-ms-correlation-request-id": [
- "03bb59ec-937b-4812-a258-be6833a05a6d"
+ "239c2c6e-04d2-43e1-bb47-adc794055274"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032804Z:03bb59ec-937b-4812-a258-be6833a05a6d"
+ "AUSTRALIAEAST:20180607T135759Z:239c2c6e-04d2-43e1-bb47-adc794055274"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:28:04 GMT"
+ "Thu, 07 Jun 2018 13:57:59 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd09TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME9ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2722,40 +2806,43 @@
"14989"
],
"x-ms-request-id": [
- "d22bd222-fcc1-4b8e-9b41-459a8a99b957"
+ "e5e9a63d-6ffc-4c0c-a490-5c4716d051a5"
],
"x-ms-correlation-request-id": [
- "d22bd222-fcc1-4b8e-9b41-459a8a99b957"
+ "e5e9a63d-6ffc-4c0c-a490-5c4716d051a5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032820Z:d22bd222-fcc1-4b8e-9b41-459a8a99b957"
+ "AUSTRALIAEAST:20180607T135815Z:e5e9a63d-6ffc-4c0c-a490-5c4716d051a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:28:20 GMT"
+ "Thu, 07 Jun 2018 13:58:14 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd09TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME9ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2769,47 +2856,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"14988"
],
"x-ms-request-id": [
- "9175fbb3-c3ab-4409-a12a-3c55f0baa0bc"
+ "b15cae2d-a67f-496a-9faa-8eb9597fad22"
],
"x-ms-correlation-request-id": [
- "9175fbb3-c3ab-4409-a12a-3c55f0baa0bc"
+ "b15cae2d-a67f-496a-9faa-8eb9597fad22"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032835Z:9175fbb3-c3ab-4409-a12a-3c55f0baa0bc"
+ "AUSTRALIAEAST:20180607T135830Z:b15cae2d-a67f-496a-9faa-8eb9597fad22"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:28:34 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 13:58:30 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwOS1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd09TMUZRVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0ODEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME9ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2827,22 +2911,25 @@
"14987"
],
"x-ms-request-id": [
- "ba089e89-ede0-4235-bb07-2686f67c5e97"
+ "16a1bd91-4b74-4ccf-92ff-cd16c3d18276"
],
"x-ms-correlation-request-id": [
- "ba089e89-ede0-4235-bb07-2686f67c5e97"
+ "16a1bd91-4b74-4ccf-92ff-cd16c3d18276"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032850Z:ba089e89-ede0-4235-bb07-2686f67c5e97"
+ "AUSTRALIAEAST:20180607T135831Z:16a1bd91-4b74-4ccf-92ff-cd16c3d18276"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:28:49 GMT"
+ "Thu, 07 Jun 2018 13:58:31 GMT"
]
},
"StatusCode": 200
@@ -2850,12 +2937,12 @@
],
"Names": {
"": [
- "ps609",
- "ps2160",
- "ps7492"
+ "ps1481",
+ "ps1252",
+ "ps379"
],
"Test-DataLakeAnalyticsFirewall": [
- "ps9922"
+ "ps5560"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaJob.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaJob.json
index cd143189dd3a..1e8d58602fbf 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaJob.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaJob.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,7 +10,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1627"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "f6868d7f-e6d3-4763-a0f2-d1d9c170f19c"
+ "6c6dd7f3-ae09-489b-8c42-29d2ead11ff7"
],
"x-ms-correlation-request-id": [
- "f6868d7f-e6d3-4763-a0f2-d1d9c170f19c"
+ "6c6dd7f3-ae09-489b-8c42-29d2ead11ff7"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162718Z:f6868d7f-e6d3-4763-a0f2-d1d9c170f19c"
+ "AUSTRALIAEAST:20180607T135938Z:6c6dd7f3-ae09-489b-8c42-29d2ead11ff7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:18 GMT"
+ "Thu, 07 Jun 2018 13:59:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -61,7 +61,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1627"
@@ -76,16 +76,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14998"
],
"x-ms-request-id": [
- "2372ae6c-1bb6-45eb-8466-67e63c24e367"
+ "b673fbec-d200-4a32-881b-37fb21566d08"
],
"x-ms-correlation-request-id": [
- "2372ae6c-1bb6-45eb-8466-67e63c24e367"
+ "b673fbec-d200-4a32-881b-37fb21566d08"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162718Z:2372ae6c-1bb6-45eb-8466-67e63c24e367"
+ "AUSTRALIAEAST:20180607T135938Z:b673fbec-d200-4a32-881b-37fb21566d08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -97,28 +97,37 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:18 GMT"
+ "Thu, 07 Jun 2018 13:59:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3997?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMzk5Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5188?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTE4OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "b09f35c1-fc5e-4887-8e4f-05c3a1e27ff6"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997\",\r\n \"name\": \"ps3997\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188\",\r\n \"name\": \"ps5188\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -133,16 +142,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-request-id": [
- "658af5e4-78c8-405b-bb7f-d7b23dc6ee84"
+ "f56fa4d7-faf1-4f9e-b1b3-79c53049226c"
],
"x-ms-correlation-request-id": [
- "658af5e4-78c8-405b-bb7f-d7b23dc6ee84"
+ "f56fa4d7-faf1-4f9e-b1b3-79c53049226c"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162722Z:658af5e4-78c8-405b-bb7f-d7b23dc6ee84"
+ "AUSTRALIAEAST:20180607T135948Z:f56fa4d7-faf1-4f9e-b1b3-79c53049226c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,31 +163,31 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:22 GMT"
+ "Thu, 07 Jun 2018 13:59:48 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNDI3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "88d4929a-9b56-4f9b-a3d3-52930c3ab675"
+ "a11983b8-482c-49af-b0a8-f41f6675f39a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps9940' under resource group 'ps3997' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps3427' under resource group 'ps5188' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -196,13 +205,13 @@
"gateway"
],
"x-ms-request-id": [
- "f17d5e41-ba9c-4f34-a8fd-bd2daff28a5c"
+ "a4352aba-d9c4-4496-994d-4938c803414c"
],
"x-ms-correlation-request-id": [
- "f17d5e41-ba9c-4f34-a8fd-bd2daff28a5c"
+ "a4352aba-d9c4-4496-994d-4938c803414c"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162722Z:f17d5e41-ba9c-4f34-a8fd-bd2daff28a5c"
+ "AUSTRALIAEAST:20180607T135950Z:a4352aba-d9c4-4496-994d-4938c803414c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -214,28 +223,28 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:22 GMT"
+ "Thu, 07 Jun 2018 13:59:49 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNDI3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9940.azuredatalakestore.net\",\r\n \"accountId\": \"cd1336ac-7866-42f7-be08-5ac6bf97918d\",\r\n \"creationTime\": \"2018-03-21T16:27:27.6256615Z\",\r\n \"lastModifiedTime\": \"2018-03-21T16:27:27.6256615Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f92ddcd2-f21d-4f48-a130-6162bdc23614\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940\",\r\n \"name\": \"ps9940\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3427.azuredatalakestore.net\",\r\n \"accountId\": \"1fdc2513-15b4-468b-bfdb-9a3b1aca6e60\",\r\n \"creationTime\": \"2018-06-07T14:00:00.2938956Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:00:00.2938956Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9eee73fc-0dd3-4073-b78e-81a638a136a0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427\",\r\n \"name\": \"ps3427\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "952"
+ "992"
],
"Content-Type": [
"application/json"
@@ -247,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8ce3b024-66e4-4719-8dfd-a62d8d5340df"
+ "1997c457-7428-4991-9b3f-054371c03dd2"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14977"
],
"x-ms-correlation-request-id": [
- "559fcecc-b647-4adf-8c58-32b2dc5abba7"
+ "547d4fbf-e680-4837-862d-a732e91f80ec"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162759Z:559fcecc-b647-4adf-8c58-32b2dc5abba7"
+ "AUSTRALIAEAST:20180607T140033Z:547d4fbf-e680-4837-862d-a732e91f80ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:59 GMT"
+ "Thu, 07 Jun 2018 14:00:32 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -286,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNDI3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58fa39b9-127c-4896-917b-3a84291a6447"
+ "fe86647d-1c83-4452-91f1-dea1fb27bb41"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9940.azuredatalakestore.net\",\r\n \"accountId\": \"cd1336ac-7866-42f7-be08-5ac6bf97918d\",\r\n \"creationTime\": \"2018-03-21T16:27:27.6256615Z\",\r\n \"lastModifiedTime\": \"2018-03-21T16:27:27.6256615Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f92ddcd2-f21d-4f48-a130-6162bdc23614\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940\",\r\n \"name\": \"ps9940\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps3427.azuredatalakestore.net\",\r\n \"accountId\": \"1fdc2513-15b4-468b-bfdb-9a3b1aca6e60\",\r\n \"creationTime\": \"2018-06-07T14:00:00.2938956Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:00:00.2938956Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9eee73fc-0dd3-4073-b78e-81a638a136a0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427\",\r\n \"name\": \"ps3427\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "952"
+ "992"
],
"Content-Type": [
"application/json"
@@ -319,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6fd52253-76d7-45fb-ae2a-18945f6ec3fc"
+ "358f492b-6de6-4967-9c27-2fcd0dd85796"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14996"
],
"x-ms-correlation-request-id": [
- "9244f4ed-f837-4c6f-92d7-e33b05f896c7"
+ "81b61793-6c23-4134-b4cd-6b7ba4590f33"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T163423Z:9244f4ed-f837-4c6f-92d7-e33b05f896c7"
+ "AUSTRALIAEAST:20180607T140721Z:81b61793-6c23-4134-b4cd-6b7ba4590f33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:34:22 GMT"
+ "Thu, 07 Jun 2018 14:07:21 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -358,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNDI3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "99aa6799-3b4b-4c70-ad29-be3cc5cc572d"
+ "37fd3a20-bc37-4e92-857d-054d6c4a5b49"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"cd1336ac-7866-42f7-be08-5ac6bf97918d\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940\",\r\n \"name\": \"ps9940\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"1fdc2513-15b4-468b-bfdb-9a3b1aca6e60\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427\",\r\n \"name\": \"ps3427\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -400,37 +403,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cd1336ac-7866-42f7-be08-5ac6bf97918d0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1fdc2513-15b4-468b-bfdb-9a3b1aca6e600?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "baa77430-033c-4580-8993-e483e6495bc8"
+ "60c74a42-5665-4898-a6e3-2984534ec838"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1193"
],
"x-ms-correlation-request-id": [
- "61521258-6980-4d82-8d11-9f80752983c8"
+ "9c8c1722-0689-431c-adf8-600b807b0960"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162726Z:61521258-6980-4d82-8d11-9f80752983c8"
+ "AUSTRALIAEAST:20180607T135958Z:9c8c1722-0689-431c-adf8-600b807b0960"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:26 GMT"
+ "Thu, 07 Jun 2018 13:59:57 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -445,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cd1336ac-7866-42f7-be08-5ac6bf97918d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NkMTMzNmFjLTc4NjYtNDJmNy1iZTA4LTVhYzZiZjk3OTE4ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1fdc2513-15b4-468b-bfdb-9a3b1aca6e600?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzFmZGMyNTEzLTE1YjQtNDY4Yi1iZmRiLTlhM2IxYWNhNmU2MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -472,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7a42c1d3-0740-4cd5-ba12-8f8a5763a795"
+ "77e472ab-ddf9-4a5a-bd7b-522a2c335914"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14980"
],
"x-ms-correlation-request-id": [
- "c314faa0-f142-4c24-80af-71cc32f6fe30"
+ "890c5232-0e38-4ed6-aa71-653ba68fd2b3"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162737Z:c314faa0-f142-4c24-80af-71cc32f6fe30"
+ "AUSTRALIAEAST:20180607T140009Z:890c5232-0e38-4ed6-aa71-653ba68fd2b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:36 GMT"
+ "Thu, 07 Jun 2018 14:00:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -511,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cd1336ac-7866-42f7-be08-5ac6bf97918d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NkMTMzNmFjLTc4NjYtNDJmNy1iZTA4LTVhYzZiZjk3OTE4ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1fdc2513-15b4-468b-bfdb-9a3b1aca6e600?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzFmZGMyNTEzLTE1YjQtNDY4Yi1iZmRiLTlhM2IxYWNhNmU2MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -538,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a1b03c45-e552-43b1-a35e-96d72a93591e"
+ "4d968d91-5927-432d-a95f-6e0a26ce44a0"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14979"
],
"x-ms-correlation-request-id": [
- "bd65f86e-3b10-46ec-a7dc-2cbb64cdaf14"
+ "661c7674-6c5d-4462-ad90-ef3396802035"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162748Z:bd65f86e-3b10-46ec-a7dc-2cbb64cdaf14"
+ "AUSTRALIAEAST:20180607T140020Z:661c7674-6c5d-4462-ad90-ef3396802035"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:47 GMT"
+ "Thu, 07 Jun 2018 14:00:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -577,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cd1336ac-7866-42f7-be08-5ac6bf97918d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NkMTMzNmFjLTc4NjYtNDJmNy1iZTA4LTVhYzZiZjk3OTE4ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/1fdc2513-15b4-468b-bfdb-9a3b1aca6e600?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzFmZGMyNTEzLTE1YjQtNDY4Yi1iZmRiLTlhM2IxYWNhNmU2MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -604,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8093a848-36c3-4bbd-81f5-be4e1179ec6c"
+ "133db37e-a780-45c2-9c1f-17ca6874ca98"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14973"
+ "14978"
],
"x-ms-correlation-request-id": [
- "4d13645c-ffdf-433f-9832-f2d40487b5b3"
+ "30ced8de-7afb-4432-9cd8-893d80666c82"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162758Z:4d13645c-ffdf-433f-9832-f2d40487b5b3"
+ "AUSTRALIAEAST:20180607T140032Z:30ced8de-7afb-4432-9cd8-893d80666c82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:58 GMT"
+ "Thu, 07 Jun 2018 14:00:31 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -643,25 +634,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7210fd80-7708-4b63-b0f0-6ae29ef6a266"
+ "81e31a93-fb3b-47be-9e1e-b49bc83b6ae1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1883' under resource group 'ps3997' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps8037' under resource group 'ps5188' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -679,13 +670,13 @@
"gateway"
],
"x-ms-request-id": [
- "1e2c7c6d-0b41-4854-adeb-305a2355aedf"
+ "e2b7b16c-11d4-4852-9191-2966f506c197"
],
"x-ms-correlation-request-id": [
- "1e2c7c6d-0b41-4854-adeb-305a2355aedf"
+ "e2b7b16c-11d4-4852-9191-2966f506c197"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162759Z:1e2c7c6d-0b41-4854-adeb-305a2355aedf"
+ "AUSTRALIAEAST:20180607T140035Z:e2b7b16c-11d4-4852-9191-2966f506c197"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -697,31 +688,31 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:59 GMT"
+ "Thu, 07 Jun 2018 14:00:34 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e540a208-77cc-4c62-a427-ec2f94611239"
+ "e6be0f28-2188-45e9-b209-4443d896e960"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1883' under resource group 'ps3997' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps8037' under resource group 'ps5188' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -739,13 +730,13 @@
"gateway"
],
"x-ms-request-id": [
- "8f4dd7c9-1027-4efa-8c30-e021363b44e2"
+ "4d993ba4-9888-444c-87a1-ce98ffcec916"
],
"x-ms-correlation-request-id": [
- "8f4dd7c9-1027-4efa-8c30-e021363b44e2"
+ "4d993ba4-9888-444c-87a1-ce98ffcec916"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162759Z:8f4dd7c9-1027-4efa-8c30-e021363b44e2"
+ "AUSTRALIAEAST:20180607T140035Z:4d993ba4-9888-444c-87a1-ce98ffcec916"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -757,28 +748,28 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:27:59 GMT"
+ "Thu, 07 Jun 2018 14:00:34 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9940\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9940\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1883.azuredatalakeanalytics.net\",\r\n \"accountId\": \"10bbfa16-cb3f-484d-be7c-3572ff336cc9\",\r\n \"creationTime\": \"2018-03-21T16:28:03.7952014Z\",\r\n \"lastModifiedTime\": \"2018-03-21T16:28:03.7952014Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883\",\r\n \"name\": \"ps1883\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3427\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3427\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8037.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1b6a67fc-60d5-49cc-9199-b8b4a3b761aa\",\r\n \"creationTime\": \"2018-06-07T14:00:40.8053763Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:00:40.8053763Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037\",\r\n \"name\": \"ps8037\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -790,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "65b4a0c8-cba2-47bf-b055-64119ddf1986"
+ "89ca0eeb-f4d9-4a51-ac4b-8f015eb84193"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14968"
],
"x-ms-correlation-request-id": [
- "4247446a-4a3d-40b0-96e2-10dda4db4509"
+ "ae785988-1b2c-4f16-bdf6-ec7d5607be01"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162834Z:4247446a-4a3d-40b0-96e2-10dda4db4509"
+ "AUSTRALIAEAST:20180607T140115Z:ae785988-1b2c-4f16-bdf6-ec7d5607be01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:28:34 GMT"
+ "Thu, 07 Jun 2018 14:01:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -829,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91d5dba4-7020-4813-a806-719be52af69d"
+ "087eac3f-535f-45ca-8aae-300feb4cd058"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9940\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9940\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1883.azuredatalakeanalytics.net\",\r\n \"accountId\": \"10bbfa16-cb3f-484d-be7c-3572ff336cc9\",\r\n \"creationTime\": \"2018-03-21T16:28:03.7952014Z\",\r\n \"lastModifiedTime\": \"2018-03-21T16:28:03.7952014Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883\",\r\n \"name\": \"ps1883\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3427\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3427\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8037.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1b6a67fc-60d5-49cc-9199-b8b4a3b761aa\",\r\n \"creationTime\": \"2018-06-07T14:00:40.8053763Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:00:40.8053763Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037\",\r\n \"name\": \"ps8037\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -862,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "993b4f91-fe85-45d2-a0c0-2e9602d647ad"
+ "a81ec471-23fd-424c-a413-d11f5dc8532a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14967"
],
"x-ms-correlation-request-id": [
- "ab1bf33d-3829-459a-a615-b3002d32a98b"
+ "c17868b8-04c7-4184-9477-52cf8671ebeb"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162835Z:ab1bf33d-3829-459a-a615-b3002d32a98b"
+ "AUSTRALIAEAST:20180607T140116Z:c17868b8-04c7-4184-9477-52cf8671ebeb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:28:34 GMT"
+ "Thu, 07 Jun 2018 14:01:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -901,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fbc5c4a6-cf14-4e67-b16b-de4ce5a135b1"
+ "308ebd25-c5ad-4f0d-85d7-817faf344e3b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps9940\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9940\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps1883.azuredatalakeanalytics.net\",\r\n \"accountId\": \"10bbfa16-cb3f-484d-be7c-3572ff336cc9\",\r\n \"creationTime\": \"2018-03-21T16:28:03.7952014Z\",\r\n \"lastModifiedTime\": \"2018-03-21T16:28:03.7952014Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883\",\r\n \"name\": \"ps1883\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps3427\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3427\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps8037.azuredatalakeanalytics.net\",\r\n \"accountId\": \"1b6a67fc-60d5-49cc-9199-b8b4a3b761aa\",\r\n \"creationTime\": \"2018-06-07T14:00:40.8053763Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:00:40.8053763Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037\",\r\n \"name\": \"ps8037\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -934,7 +919,7 @@
"no-cache"
],
"x-ms-request-id": [
- "8b78e2d2-c3a8-45bc-bfcd-9fe102d2fa62"
+ "b3ee1bee-b750-463a-994a-a541a68195f4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -943,22 +928,19 @@
"14999"
],
"x-ms-correlation-request-id": [
- "37ca5b51-74b5-44ee-9686-5a772281812d"
+ "c55a17a4-5a0b-4ed8-8982-6df2c5d6e3b2"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T163418Z:37ca5b51-74b5-44ee-9686-5a772281812d"
+ "AUSTRALIAEAST:20180607T140712Z:c55a17a4-5a0b-4ed8-8982-6df2c5d6e3b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:34:18 GMT"
+ "Thu, 07 Jun 2018 14:07:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -973,25 +955,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c9b1772-b7b3-47fb-bd08-08d0c8f64694"
+ "832b1829-ecd6-4f04-9b6c-4701f5e9e268"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1883' under resource group 'ps3997' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps8037' under resource group 'ps5188' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1009,13 +991,13 @@
"gateway"
],
"x-ms-request-id": [
- "7b0554b4-93b0-4656-8a3c-514949405412"
+ "1ac3977f-13df-42db-93b0-2cfcb84a2394"
],
"x-ms-correlation-request-id": [
- "7b0554b4-93b0-4656-8a3c-514949405412"
+ "1ac3977f-13df-42db-93b0-2cfcb84a2394"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T163422Z:7b0554b4-93b0-4656-8a3c-514949405412"
+ "AUSTRALIAEAST:20180607T140718Z:1ac3977f-13df-42db-93b0-2cfcb84a2394"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1027,31 +1009,31 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:34:21 GMT"
+ "Thu, 07 Jun 2018 14:07:18 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e30e2220-6bba-4df2-9acf-e924c55ff07a"
+ "6c34b0b7-20ec-4610-a8de-76c18e27cffb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps1883' under resource group 'ps3997' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps8037' under resource group 'ps5188' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1069,13 +1051,13 @@
"gateway"
],
"x-ms-request-id": [
- "354970db-b7c5-4686-837c-e31c132cb7d9"
+ "28740201-6906-4a58-be34-90a15751780a"
],
"x-ms-correlation-request-id": [
- "354970db-b7c5-4686-837c-e31c132cb7d9"
+ "28740201-6906-4a58-be34-90a15751780a"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T163422Z:354970db-b7c5-4686-837c-e31c132cb7d9"
+ "AUSTRALIAEAST:20180607T140719Z:28740201-6906-4a58-be34-90a15751780a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1087,40 +1069,40 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:34:21 GMT"
+ "Thu, 07 Jun 2018 14:07:18 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9940\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps9940\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps3427\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps3427\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "72f15362-b118-4de0-a726-ca2f216008de"
+ "6ec89d1f-da7d-47b5-864a-0c1c82fb5901"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9940\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9940\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"10bbfa16-cb3f-484d-be7c-3572ff336cc9\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883\",\r\n \"name\": \"ps1883\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps3427\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps3427\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"1b6a67fc-60d5-49cc-9199-b8b4a3b761aa\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037\",\r\n \"name\": \"ps8037\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "487"
],
"Content-Type": [
"application/json"
@@ -1135,37 +1117,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/10bbfa16-cb3f-484d-be7c-3572ff336cc90?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1b6a67fc-60d5-49cc-9199-b8b4a3b761aa0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "85174ed0-86b3-4e20-8007-fb89320ffdd3"
+ "c50e3db9-42be-4b91-b2a3-9576efcd1969"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1179"
+ "1196"
],
"x-ms-correlation-request-id": [
- "4c6672ca-f713-41a1-8171-4264c60a6426"
+ "155b766f-26aa-4720-91d5-0ba2648148a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162801Z:4c6672ca-f713-41a1-8171-4264c60a6426"
+ "AUSTRALIAEAST:20180607T140039Z:155b766f-26aa-4720-91d5-0ba2648148a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:28:00 GMT"
+ "Thu, 07 Jun 2018 14:00:39 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1180,16 +1159,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/10bbfa16-cb3f-484d-be7c-3572ff336cc90?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xMGJiZmExNi1jYjNmLTQ4NGQtYmU3Yy0zNTcyZmYzMzZjYzkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1b6a67fc-60d5-49cc-9199-b8b4a3b761aa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8xYjZhNjdmYy02MGQ1LTQ5Y2MtOTE5OS1iOGI0YTNiNzYxYWEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1207,31 +1186,28 @@
"no-cache"
],
"x-ms-request-id": [
- "85772cc8-0f9f-4edc-ba20-2894220bf3a7"
+ "ecb59dec-fe82-452a-b1c6-a88f813d7c1a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14971"
],
"x-ms-correlation-request-id": [
- "9d46aba7-1732-4815-b930-b6c64ff9e397"
+ "4cd64abc-b9e6-4d00-9a79-950716636a1c"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162813Z:9d46aba7-1732-4815-b930-b6c64ff9e397"
+ "AUSTRALIAEAST:20180607T140051Z:4cd64abc-b9e6-4d00-9a79-950716636a1c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:28:13 GMT"
+ "Thu, 07 Jun 2018 14:00:50 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1246,16 +1222,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/10bbfa16-cb3f-484d-be7c-3572ff336cc90?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xMGJiZmExNi1jYjNmLTQ4NGQtYmU3Yy0zNTcyZmYzMzZjYzkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1b6a67fc-60d5-49cc-9199-b8b4a3b761aa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8xYjZhNjdmYy02MGQ1LTQ5Y2MtOTE5OS1iOGI0YTNiNzYxYWEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1273,31 +1249,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1befb09a-43b4-4941-ac9f-52a7a737e400"
+ "53b7e3ab-8eda-4e63-8c8f-f667e357eacb"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14970"
],
"x-ms-correlation-request-id": [
- "874949ba-c18e-45ed-a6f0-f6bc2d895335"
+ "03691ee3-2fcf-4086-bad8-732c008718d9"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162823Z:874949ba-c18e-45ed-a6f0-f6bc2d895335"
+ "AUSTRALIAEAST:20180607T140102Z:03691ee3-2fcf-4086-bad8-732c008718d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:28:23 GMT"
+ "Thu, 07 Jun 2018 14:01:01 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1312,16 +1285,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/10bbfa16-cb3f-484d-be7c-3572ff336cc90?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xMGJiZmExNi1jYjNmLTQ4NGQtYmU3Yy0zNTcyZmYzMzZjYzkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/1b6a67fc-60d5-49cc-9199-b8b4a3b761aa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy8xYjZhNjdmYy02MGQ1LTQ5Y2MtOTE5OS1iOGI0YTNiNzYxYWEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1339,31 +1312,28 @@
"no-cache"
],
"x-ms-request-id": [
- "1e5b721b-0c4a-40bb-817d-5bc22600a3b1"
+ "c39eb3e8-f55f-4826-9d1f-1d94acb52acc"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14969"
],
"x-ms-correlation-request-id": [
- "64d44d65-c74a-4262-97ef-6e45b1835b86"
+ "dfe54094-5a77-495b-be3f-7998617cc88c"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T162834Z:64d44d65-c74a-4262-97ef-6e45b1835b86"
+ "AUSTRALIAEAST:20180607T140113Z:dfe54094-5a77-495b-be3f-7998617cc88c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:28:34 GMT"
+ "Thu, 07 Jun 2018 14:01:13 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1378,8 +1348,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/530315f4-7746-479a-8e92-e885a95bd332?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNTMwMzE1ZjQtNzc0Ni00NzlhLThlOTItZTg4NWE5NWJkMzMyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/1361f0c6-8e65-40c2-bf93-f9503c84902c?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMTM2MWYwYzYtOGU2NS00MGMyLWJmOTMtZjk1MDNjODQ5MDJjP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
"RequestHeaders": {
@@ -1390,19 +1360,19 @@
"207"
],
"x-ms-client-request-id": [
- "af8596d6-4201-471a-8c0b-e58f1bb6590c"
+ "7e683f29-7c17-4f30-9588-949a3c4a9fb9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"530315f4-7746-479a-8e92-e885a95bd332\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:36.8279154-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:36.8279154-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/530315f4-7746-479a-8e92-e885a95bd332/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"1361f0c6-8e65-40c2-bf93-f9503c84902c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:18.8939198+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:18.8939198+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/1361f0c6-8e65-40c2-bf93-f9503c84902c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1414,7 +1384,7 @@
"chunked"
],
"x-ms-request-id": [
- "dcfc77f7-77b4-4427-bda4-5e2e6338b26c"
+ "021e09cc-4cb1-4141-933b-6a935542712c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1426,28 +1396,28 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:37 GMT"
+ "Thu, 07 Jun 2018 14:06:18 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/530315f4-7746-479a-8e92-e885a95bd332/CancelJob?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNTMwMzE1ZjQtNzc0Ni00NzlhLThlOTItZTg4NWE5NWJkMzMyL0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/1361f0c6-8e65-40c2-bf93-f9503c84902c/CancelJob?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMTM2MWYwYzYtOGU2NS00MGMyLWJmOTMtZjk1MDNjODQ5MDJjL0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8821a4f6-4a29-4190-8512-fa36eb20be2f"
+ "b076518f-5ba9-459b-90d4-34c2b99b6df0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -1459,7 +1429,7 @@
"chunked"
],
"x-ms-request-id": [
- "66e01b00-c00b-4229-8f7d-4a502adaeac1"
+ "d406b690-8f6d-4a0b-a3a4-e0df100178aa"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1471,31 +1441,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:40 GMT"
+ "Thu, 07 Jun 2018 14:06:24 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/530315f4-7746-479a-8e92-e885a95bd332?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNTMwMzE1ZjQtNzc0Ni00NzlhLThlOTItZTg4NWE5NWJkMzMyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/1361f0c6-8e65-40c2-bf93-f9503c84902c?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvMTM2MWYwYzYtOGU2NS00MGMyLWJmOTMtZjk1MDNjODQ5MDJjP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25e17342-4ca9-492a-9149-d8b8f1ca8000"
+ "71b4c73a-f454-443d-bf9a-24d1261f2a58"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"530315f4-7746-479a-8e92-e885a95bd332\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:36.8279154-07:00\",\r\n \"endTime\": \"2018-03-21T09:33:37.6404298-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by NetworkTester@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:36.8279154-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:37.2654244-07:00\",\r\n \"details\": \"Compilation:b4082d68-66aa-4b43-92b7-94af07a17b38;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-03-21T09:33:37.6404298-07:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/530315f4-7746-479a-8e92-e885a95bd332/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/530315f4-7746-479a-8e92-e885a95bd332/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/530315f4-7746-479a-8e92-e885a95bd332/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.3750054S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"1361f0c6-8e65-40c2-bf93-f9503c84902c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:18.8939198+08:00\",\r\n \"endTime\": \"2018-06-07T22:06:21.5033239+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by .\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:18.8939198+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:19.409564+08:00\",\r\n \"details\": \"Compilation:ed91620f-4dad-4af3-a0d5-76f7086f126d;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-06-07T22:06:21.5033239+08:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/1361f0c6-8e65-40c2-bf93-f9503c84902c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/1361f0c6-8e65-40c2-bf93-f9503c84902c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/1361f0c6-8e65-40c2-bf93-f9503c84902c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT2.0937599S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1507,7 +1477,7 @@
"chunked"
],
"x-ms-request-id": [
- "2afbb55e-0aad-4599-ba09-6c432197cc15"
+ "9dfb73d1-8ef2-4903-ace3-2b870542a252"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1519,31 +1489,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:41 GMT"
+ "Thu, 07 Jun 2018 14:06:24 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20ge%20datetimeoffset'2018-03-21T16:18:03.7952014%2B00:00'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE4LTAzLTIxVDE2JTNBMTglM0EwMy43OTUyMDE0JTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs?$filter=submitTime%20ge%20datetimeoffset'2018-06-07T13:50:40.8053763%2B00:00'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE4LTA2LTA3VDEzJTNBNTAlM0E0MC44MDUzNzYzJTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1b7f803-a7a0-4032-a488-79d7a6195ef1"
+ "9b2a7967-23d5-433e-aded-ababfd77eac7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"530315f4-7746-479a-8e92-e885a95bd332\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:36.8279154-07:00\",\r\n \"endTime\": \"2018-03-21T09:33:37.6404298-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"1361f0c6-8e65-40c2-bf93-f9503c84902c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:18.8939198+08:00\",\r\n \"endTime\": \"2018-06-07T22:06:21.5033239+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {}\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1555,7 +1525,7 @@
"chunked"
],
"x-ms-request-id": [
- "8481159e-17d2-44e0-9271-4b0be1575e36"
+ "9eab9415-cf90-416e-a90b-107a4f17edb2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1567,31 +1537,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:41 GMT"
+ "Thu, 07 Jun 2018 14:06:25 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20lt%20datetimeoffset'2018-03-21T16:38:03.7952014%2B00:00'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwbHQlMjBkYXRldGltZW9mZnNldCcyMDE4LTAzLTIxVDE2JTNBMzglM0EwMy43OTUyMDE0JTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs?$filter=submitTime%20lt%20datetimeoffset'2018-06-07T14:10:40.8053763%2B00:00'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwbHQlMjBkYXRldGltZW9mZnNldCcyMDE4LTA2LTA3VDE0JTNBMTAlM0E0MC44MDUzNzYzJTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fabedecf-75e0-4317-886f-8e4aedff01c2"
+ "ca788799-e693-43ed-85a8-97d2c36f558e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"530315f4-7746-479a-8e92-e885a95bd332\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:36.8279154-07:00\",\r\n \"endTime\": \"2018-03-21T09:33:37.6404298-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {}\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"1361f0c6-8e65-40c2-bf93-f9503c84902c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:18.8939198+08:00\",\r\n \"endTime\": \"2018-06-07T22:06:21.5033239+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {}\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1603,7 +1573,7 @@
"chunked"
],
"x-ms-request-id": [
- "2c60bc33-d877-499d-8a19-a2a67603db0c"
+ "871a2720-33ca-4ebb-8748-e56fd82317b8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1615,14 +1585,14 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:41 GMT"
+ "Thu, 07 Jun 2018 14:06:25 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
"RequestHeaders": {
@@ -1633,19 +1603,19 @@
"885"
],
"x-ms-client-request-id": [
- "587a6e55-ba79-4b19-9728-60672ff77bfd"
+ "00ac4b03-9cc9-4a73-83a1-8261eed123bb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1657,7 +1627,7 @@
"chunked"
],
"x-ms-request-id": [
- "ab69e259-6232-445c-90bd-f1d409c2347b"
+ "0f4be230-2fac-42d3-87de-221fe30235e4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1669,31 +1639,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:42 GMT"
+ "Thu, 07 Jun 2018 14:06:26 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10cbb074-b263-450b-8c3d-e5db8a37e2e1"
+ "09a12268-b5ce-40a5-9691-07c4e38a69c5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.6328035S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.4325753S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1705,7 +1675,7 @@
"chunked"
],
"x-ms-request-id": [
- "3a0e4d9f-0e73-4c09-9df4-b4728174fd12"
+ "7be59579-a4e6-4b44-83ae-e5b627f7392f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1717,31 +1687,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:42 GMT"
+ "Thu, 07 Jun 2018 14:06:26 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a8838a80-70c1-4aef-83da-1a352ecfdcf3"
+ "1fcbd4ac-6caa-4b1a-abf6-9c09d857cee2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.1078068S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.9795763S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1753,7 +1723,7 @@
"chunked"
],
"x-ms-request-id": [
- "93f8170d-14af-44da-99cd-9a5ed51771b4"
+ "ee9914f4-ebeb-49db-96a0-6be7d9246089"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1765,31 +1735,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:43 GMT"
+ "Thu, 07 Jun 2018 14:06:32 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1699c2b9-3a58-4921-a1c4-c0a104f48258"
+ "16e78067-f09c-4231-8081-5a9e3baf5eb7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.3265314S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5239719S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1801,7 +1771,7 @@
"chunked"
],
"x-ms-request-id": [
- "319052ca-6c37-4c0d-adb5-32bdfafdc920"
+ "1d943f44-b4b3-41d5-adc0-71c6081a044d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1813,31 +1783,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:43 GMT"
+ "Thu, 07 Jun 2018 14:06:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a02a5f73-4f2d-441b-a482-f84bf7dff388"
+ "813d1b81-0c4d-4e9d-87e4-6c20cd831ae4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.5140338S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT16.8860764S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1849,7 +1819,7 @@
"chunked"
],
"x-ms-request-id": [
- "4d32d792-e44e-49ac-a1c5-af3bad549239"
+ "4ad0d5f8-36d9-4361-92b3-65daa1840bd8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1861,31 +1831,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:43 GMT"
+ "Thu, 07 Jun 2018 14:06:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53a50d07-b169-4a1b-9590-8a8869baa0db"
+ "444b22c3-e0a6-4473-ab60-83812b39734c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.6953376S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1442455+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1598532+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e55fe4f3-c12b-4648-a3d7-68236a562b85\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1754612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"e55fe4f3-c12b-4648-a3d7-68236a562b85\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"yarnApplicationId\": 1736393,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.3908662S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1897,7 +1867,7 @@
"chunked"
],
"x-ms-request-id": [
- "564ef167-a59f-41a7-8c97-b8b6177a2035"
+ "55d63730-7074-4f8e-8b4c-26e8d32e9b7e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1909,31 +1879,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:43 GMT"
+ "Thu, 07 Jun 2018 14:06:48 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b5c14da-7a4d-41b3-9eaf-73ef959c331d"
+ "de30850d-0f37-4b30-af9c-e700ef09d058"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT1.8890373S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"startTime\": \"2018-06-07T22:06:52.1286636+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1442455+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1598532+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e55fe4f3-c12b-4648-a3d7-68236a562b85\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1754612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T22:06:52.1286636+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"e55fe4f3-c12b-4648-a3d7-68236a562b85\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"yarnApplicationId\": 1736393,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.3908662S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT2.1962426S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1945,7 +1915,7 @@
"chunked"
],
"x-ms-request-id": [
- "8b218e2e-a90a-4ce0-bd8e-f1c6790f934d"
+ "ad201523-90ea-490e-b650-369bb76fa956"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1957,31 +1927,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:44 GMT"
+ "Thu, 07 Jun 2018 14:06:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c58777a-bbad-4ab8-9861-6ddfc5c34d19"
+ "2d9ee6ac-086d-434f-8de1-7d8828e5b443"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.0985975S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"startTime\": \"2018-06-07T22:06:52.1286636+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1442455+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1598532+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e55fe4f3-c12b-4648-a3d7-68236a562b85\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1754612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T22:06:52.1286636+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"e55fe4f3-c12b-4648-a3d7-68236a562b85\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"yarnApplicationId\": 1736393,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.3908662S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT7.571341S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1993,7 +1963,7 @@
"chunked"
],
"x-ms-request-id": [
- "c0f880f7-bc33-4a68-abf3-2b7b084ed153"
+ "3aede13a-d5df-417e-8991-c2819d7639c7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2005,31 +1975,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:44 GMT"
+ "Thu, 07 Jun 2018 14:06:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02134ba2-dfc0-4ad2-9cd5-48fb9034cd93"
+ "a7809841-dd56-47c9-9572-12318f589a1a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.3984328S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"startTime\": \"2018-06-07T22:06:52.1286636+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1442455+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1598532+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e55fe4f3-c12b-4648-a3d7-68236a562b85\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1754612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T22:06:52.1286636+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"e55fe4f3-c12b-4648-a3d7-68236a562b85\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"yarnApplicationId\": 1736393,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.3908662S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT12.9616414S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2041,7 +2011,7 @@
"chunked"
],
"x-ms-request-id": [
- "3ef2e6f5-5151-4296-adb3-968bacba56c6"
+ "f44fd576-6a53-4dd7-a779-18228740360c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2053,31 +2023,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:44 GMT"
+ "Thu, 07 Jun 2018 14:07:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/6a87ee46-bf17-4a97-bbf3-7aa21b08f396?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvNmE4N2VlNDYtYmYxNy00YTk3LWJiZjMtN2FhMjFiMDhmMzk2P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c545cd56-8dca-4fb0-a42c-343c8649ec4e"
+ "a229a8fa-daaf-42ff-a2d1-5b628f85df39"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.6171941S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"6a87ee46-bf17-4a97-bbf3-7aa21b08f396\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"startTime\": \"2018-06-07T22:06:52.1286636+08:00\",\r\n \"endTime\": \"2018-06-07T22:07:06.488173+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.5971295+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T22:06:26.7533793+08:00\",\r\n \"details\": \"Compilation:7e80c1ee-c131-4e22-b560-fad892060505;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1442455+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1598532+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e55fe4f3-c12b-4648-a3d7-68236a562b85\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T22:06:47.1754612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T22:06:52.1286636+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-06-07T22:07:06.488173+08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"e55fe4f3-c12b-4648-a3d7-68236a562b85\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps3427.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/14/06/6a87ee46-bf17-4a97-bbf3-7aa21b08f396/algebra.xml\",\r\n \"yarnApplicationId\": 1736393,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.3908662S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156077S\",\r\n \"totalRunningTime\": \"PT14.3595094S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2089,7 +2059,7 @@
"chunked"
],
"x-ms-request-id": [
- "41e473d5-9b5a-4917-bb1a-ccd38db7acc8"
+ "069445d3-26f3-493e-83ca-6b8a6fee85cd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2101,7345 +2071,382 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:44 GMT"
+ "Thu, 07 Jun 2018 14:07:10 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeAnalytics/accounts/ps8037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzODAzNz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd750ca7-98fa-4f83-aa01-ec44b1058cd3"
+ "3c7d8872-dfcd-4e3a-95f8-20606d86f751"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT2.9359446S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
],
"x-ms-request-id": [
- "b78ea021-6ecb-4437-88ae-557b7e623d4d"
+ "6dec5f37-8c8a-483a-9083-43a85b606e31"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d7239aa-787c-4b0f-9901-dd86cfc1d922"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T140718Z:6d7239aa-787c-4b0f-9901-dd86cfc1d922"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:45 GMT"
+ "Thu, 07 Jun 2018 14:07:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5188/providers/Microsoft.DataLakeStore/accounts/ps3427?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTE4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMzNDI3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12a138d6-1625-4d9f-a0dc-b7fa01b5578e"
+ "5f20bdf1-105d-4778-bc4c-e7da1a069d4e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.1234491S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
],
"x-ms-request-id": [
- "ac44b969-c59a-47e3-9c45-8a4db0e004c4"
+ "acf6fe30-d2f4-4021-bd25-e60241b83d37"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "060f6e56-8d8f-4915-b684-60f01c0e86b9"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T140727Z:060f6e56-8d8f-4915-b684-60f01c0e86b9"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:45 GMT"
+ "Thu, 07 Jun 2018 14:07:26 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5188?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTE4OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "373ea86b-ba72-4a35-be16-17dfe42f8779"
+ "1d20f975-7737-4d72-9333-7883dbbceb0f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.3109523S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-request-id": [
- "89fa1c2f-3ec5-45e2-93d4-98024a46e71b"
+ "d69375c4-ef2f-4ee6-9401-b506e5bdc532"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "d69375c4-ef2f-4ee6-9401-b506e5bdc532"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T140729Z:d69375c4-ef2f-4ee6-9401-b506e5bdc532"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:45 GMT"
+ "Thu, 07 Jun 2018 14:07:29 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "af12fff6-f6dc-4323-bdbf-4a7bc7bc299b"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.5234917S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
],
"x-ms-request-id": [
- "69ebcbda-254a-4034-b795-c9c1fe735651"
+ "48c05887-ff73-44bc-a9b2-e5d5bc2e1b97"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "48c05887-ff73-44bc-a9b2-e5d5bc2e1b97"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T140745Z:48c05887-ff73-44bc-a9b2-e5d5bc2e1b97"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:45 GMT"
+ "Thu, 07 Jun 2018 14:07:44 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "c1a92cd9-3202-4fed-93cc-e8e65ce08f02"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT3.7640856S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
],
"x-ms-request-id": [
- "58e0e00f-59cc-4bdd-a054-03d9772817bd"
+ "3c29840a-be85-4510-a452-2b2860b587a1"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "3c29840a-be85-4510-a452-2b2860b587a1"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T140801Z:3c29840a-be85-4510-a452-2b2860b587a1"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:45 GMT"
+ "Thu, 07 Jun 2018 14:08:00 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "ee1833d9-9f92-4e2f-8fa2-a60d59bbc11a"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.0765911S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
],
"x-ms-request-id": [
- "f8ee9d6b-2fd8-417f-81cb-c01512072130"
+ "f809b41e-42ce-494d-84e2-63cc5f1877d1"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "f809b41e-42ce-494d-84e2-63cc5f1877d1"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T140816Z:f809b41e-42ce-494d-84e2-63cc5f1877d1"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:33:46 GMT"
+ "Thu, 07 Jun 2018 14:08:15 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "bd1bfeb1-27b7-47f7-ad85-10135c8a0e43"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.7.2633.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.3734519S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7a2979fb-f1f5-4b88-ade4-437c646a9644"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:46 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8aef24a0-18fa-477f-a14f-54d08332376f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.685973S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0e43d159-fc69-4440-bdba-ede8c5abdc99"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:46 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c353805d-b2ab-49c1-97b7-350d73cb1952"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT4.8891049S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "38bd0e02-3a9a-46fb-838b-a528b9a60692"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:46 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "339541ab-1940-4f93-9e4a-ede6769c59e2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.0922282S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "27786f63-f1f3-4243-93c2-502fd877b649"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:47 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2124f9f8-ebbc-4fe1-a48d-ae1963aa9298"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.2797127S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7d203f89-a8b3-4d39-bed7-1ef916b783ac"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:47 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "11baf653-c031-4e74-b150-25ab6836367a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.4672147S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3c427836-f01c-41db-b175-62b82181c44b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:47 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5943cc73-c70e-4c76-8e3b-845be09157ee"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.8265951S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "895c965a-b46a-4f84-8ef5-9ac244eedfdc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:47 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "97927659-2f92-43a8-bb47-0295686ae3d7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.0141155S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "07ecc96e-51b4-460b-ad70-1cb3d0f4767d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:48 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f8cf5703-9394-47b2-84d1-61d521558463"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.2016008S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "9b0345c9-b34f-4518-a5b4-8b280d32ff90"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:48 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "af41a3d6-b086-45eb-8ec6-a96008a24ef2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.3891044S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "940b2a34-8918-49ed-9c79-235bf095f594"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:48 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2fdd7237-5598-498d-9fe6-6643d3efa669"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.5610067S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "59aac250-a2fc-4ffc-8ec7-20f53484870f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:48 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a684b98d-96a2-473a-9570-a6e9c5aff7ef"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.8110055S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "35e16109-384d-4977-956d-e0f76149166d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:48 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8f99587f-904b-40bb-ad49-c1a23e0b2300"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.0616706S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f57ee0b0-d9d7-4c06-9d2d-9a1b8e3d11b3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:49 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "048a5429-dbf6-4a11-8858-c7e4313b0439"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.2392981S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5c11c1d2-b50a-4e58-a309-f1878b322e59"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:49 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "31f67aec-2578-4a05-8c5d-eed117417c85"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.5609992S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "dba04252-e701-431b-a78e-ef3a13f4e60d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:49 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "746e0a43-6f55-4466-997a-d9bd7a34fff8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.7328756S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "51176fed-371c-4b78-bad9-beb7bbe026e4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:49 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "395a1882-d87b-4979-a5b8-b2762690724a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT7.9360045S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3a51cbdd-a6d5-4482-b5f8-58b93d1f2582"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:49 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f562b5cf-81f8-498d-b6f7-3481b9b7adfb"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.1235274S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "beff793f-b877-4d0d-baa2-ffa82d9b2271"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:50 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "11309067-48b1-4738-b1af-757036f9dc4f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.4829074S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f49ff724-6e01-4029-87b1-e2ea36e79329"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:50 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "03ce5860-1d96-4121-b42f-d7f0f071fce3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.6860128S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2e3006d9-11f5-4767-b03b-9b8c243cd0be"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:50 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "83dc5c2f-9857-4274-9eb8-63c417380c74"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT8.9516596S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1a21728d-bb8e-4ca3-8090-e96815d8a62f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:50 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "650c8330-ec51-4422-b3ee-6fbb3f615f5a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.2735621S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2ef60589-7746-4c9f-adf5-543e40946728"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:51 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "162c4aa0-f373-4e57-804a-4f9b17c63efa"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.5141693S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b6ba3798-3260-48f0-b40b-23fc1abea585"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:51 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "19bb12bc-dcd5-4fb6-9150-f4e77d529c17"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.6954235S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "13b08bd2-006d-438a-8180-e91f2c49ede1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:51 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9f3a872c-f41d-47ae-8be8-6b5043dd9499"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT9.8735337S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3916e99c-3214-4364-9976-a9861d2bfc76"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:51 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0f0ad0b3-fef0-40f3-894c-44e3aabd64ba"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.0766792S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5954af8e-651c-4755-9588-b62e4be0b4b8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:52 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0492eb1d-838d-4d2c-b2b6-d84f7012d928"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.2735745S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "926738c4-1b8f-487b-aa6a-ab0da5cb3430"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:52 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "20bfd6e5-0da1-4093-9147-a09860495272"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.4610922S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "78a46dd5-1c4c-4de5-a5c3-c57b8d93e9be"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:52 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4fc90c2a-2860-47f1-9e99-67c00cd0afe4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.6391693S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d5283c06-e858-4048-a994-cd485eec1b40"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:52 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f072bb7e-579c-4c62-a315-6a1927f5dbe8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.882943S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "01efae3b-7576-403d-895d-c0964a8fc571"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:52 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "620ddf88-e033-4e42-9a3f-897f28851bc4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.0610672S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "30579c91-c3d7-402b-9906-e1cb83efa693"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:53 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fc14cb59-e3d3-4ed6-bc06-15d8ac128268"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.2579652S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1cc29614-25a4-4cbd-8b09-bdaeba344533"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:53 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6a8f67c3-5f68-456b-860e-9e4de7c10146"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.4673477S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e6e14307-b854-43b9-9675-5fd9c217dafa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:53 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "02bd93af-f2b3-44fe-a01e-ad039abf1093"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6391821S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "61d48272-cdbe-43e7-bc87-8279c3fbad3a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:53 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ee79e0a0-d9d1-4f9e-9d5a-388b71d91c66"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.8673473S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "9cdcd9d7-73d5-49a1-8485-b7d72568bc6a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:53 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5d1776aa-bfc6-4b89-acd1-cd62cd0e3de6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0454553S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7b80f44a-cc21-4295-852c-a4fbcd097a46"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:53 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e397a787-4d37-4891-bd23-f2a6148d4faf"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.2329601S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c71ae785-cc6e-4eaf-8145-9a1cb55e88f0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:54 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e0289332-746b-4389-af71-cb596f25d761"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.5141966S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "13fafdae-304d-4131-816e-3a0749dee240"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:54 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fd84965e-871c-4e31-9250-53c11be88d03"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.6954878S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e41bc60a-0a7c-4939-9390-2274a3fc5e7d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:54 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "da751af5-e93d-49c5-99bd-1e8515bc80ec"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.889224S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5a97a60e-180a-457e-a281-a9223467cfca"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:54 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fd73b4e2-f5bd-4834-9a53-9725f681a928"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.0767074S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6f7bb296-b39a-4663-b4c9-3623baa114a3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:54 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "58887ae5-a9ac-4b6b-a556-6e3d42e3e121"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.2642286S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d836eb2d-1bd9-4064-9d6c-45634165a4b9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:55 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f565f7a1-8cd2-40fb-b330-40c01565df44"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.4829626S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5c639fa2-c38b-4a29-aa30-dea4841eaf20"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:55 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "64152821-71cc-4a3f-9af4-29b91177e28b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8048807S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "859b7195-9fe2-4c5f-96f0-04043a70508c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:55 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3cace0ee-b94b-4922-a8e2-5dcd053eebc5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.9985933S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b3e04b1b-b08a-4f59-a47b-cb441f78498a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:55 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7aefb0dd-d0d8-4681-9e54-31f04c4d2a2b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.1799019S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c5333a3d-df8f-44f1-8413-ea59ec71b011"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:56 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "90c8690f-5603-4f78-b25b-2bc52bdfe5e5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.3829956S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "80426dbc-cb46-413f-808b-80ae9e89d3b7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:56 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d4dbc501-5d68-41ec-864e-dee71f0ad7e8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.5548923S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f14e2d1c-2b29-4e9b-a814-e68c3331ae0c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:56 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b7230697-11a1-41fd-9a07-8aa4529d56c2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.7550701S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "065b619f-1e87-4114-ad0b-8a5f21c2416b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:56 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6159dd2e-3905-40c9-9910-7567e55bcbbd"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.9581988S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2a1e1ec6-72a4-4ca7-936f-14557311d470"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:56 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "36fd2447-6763-468c-a35c-b08539be9a88"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.1486517S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "cae2b995-e49c-4851-b2a6-1678c8bfbdcd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:57 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "adfaeb03-6b81-4094-80aa-850778596ba1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.3267358S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d10b3064-f809-464e-9ae2-f24b17488593"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:57 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "50bd1eb4-8300-4a1e-aac8-3b56a5f33e42"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.5454886S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6c68a7eb-49d0-47bc-96c5-e7ef32d8fd66"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:57 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9370710c-212c-44d9-9c15-c85c99ff4d10"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7330103S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "77c94a67-3739-4ba7-ba51-b2ae6e512ba3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:57 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9578f507-a817-42c7-a627-bd29cfd455cf"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9361191S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1b690f85-ea37-4592-9d66-e0e46641d128"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:57 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "402c11d1-2143-4780-b5df-a2c3bd935fe3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT16.1173974S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0425585d-3362-484a-9eed-a4e3a89ca16f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:58 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3e2b505c-2460-4a01-aeb0-d2dba76e3d79"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT16.6799202S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f75955a8-4703-4646-9925-86c84f19f16d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:58 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d1c9e4fc-8817-43ed-b2bd-da4b0e4211f1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT16.8674226S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "06a133d1-620c-47f2-975e-9b0ce23a15b8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:58 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ace5da09-ec0b-4e11-ab4d-58211feee386"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.0924151S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7ce5164c-f17d-43b9-a1de-07bb577337c6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:59 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c32bb414-5c4c-4eb7-a639-0a96977bcd1a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.2799098S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a7237e34-127e-4f05-a49a-6bbfddd65a19"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:59 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "98d198e2-748b-4dc5-9cc5-fc3d80c69e4f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.4830473S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3bfded09-52fd-40be-8121-d9cc29bb6954"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:59 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c9059605-eac0-43c8-8eb4-cd75c632901d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.6643138S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "09571fb7-3527-4b58-8093-b2635a746e6e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:59 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bf4438f3-4a7e-4a2c-8431-13e985d36688"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT17.8423995S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "57870ffe-9ce8-4dce-ae11-e4a22ca8c78b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:59 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "27df109b-3c2d-4669-83bd-e38c9e6f0af7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT18.0299199S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "765b9411-be1b-4668-96ad-ffd95a3425fc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:33:59 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f24dd943-304c-4ad8-8dbc-92f692d9c194"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT18.3830839S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "812c9b60-5e94-42fa-b7d2-c4285083d497"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "75c5cdc6-ef86-493f-a0a3-0d9c5d53410d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT18.7330577S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bdb2cca9-0403-4de5-8360-e106c6fcc46d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "effd4641-f4df-40f1-8841-382605104f20"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT18.9299712S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "cb9bcd05-d4ec-46f4-9ac3-ea33c878cb32"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7c3400de-2b48-4e1a-9a59-02b456799bb4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT19.1080415S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c9499840-69ca-436c-aed4-02401a0769c8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8d7589e8-b54c-4b9f-aa96-5175f3f80be3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT19.3049761S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b9d57109-cc46-4fc2-9fb6-e1fbd18393fd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f7a9ab5c-6577-4552-8135-871fc2594f0e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT19.4986753S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2fe553fe-3623-4297-b715-369178639a1d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "56b0bd22-8f38-44a0-9ea2-2b184aca73ac"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT19.7018038S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "dedb3a9f-bccf-406b-80d1-355f40218c60"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9cbefec6-551e-4b96-9816-0a278a7f2602"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT19.9299737S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2bf15136-9aa0-48d0-bee3-87d68e3b9f13"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:01 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a233d4fc-60ec-4d5b-9ce3-610be651c40a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.1237032S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c89bc3ce-01db-483b-8bb9-154dddcc2e26"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a0ddb985-9925-42ca-a5b8-1c349761b9f6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.4986917S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0fa74f26-dcb7-4e51-80f3-d7ed15e08100"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "10c9ed7f-49ba-4b18-9feb-99578445fc22"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.7174616S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "be7ad6ed-1641-4901-966b-2045357a23e9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "148a3ed0-2224-49fa-ad0c-6cba4216f924"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT20.8987179S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7940bdcd-0724-4048-8d2a-24f81638face"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e84e0cdb-5991-4a85-bf10-5b3bf014b5e1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.0862429S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b97bb28c-02ff-46a1-895d-4ff8cdfb0e92"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4645168d-188c-45b5-8b85-67f2df0afa84"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.2487184S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "03738cef-80a8-4828-9c06-1e27aad73ce3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "926ca68a-c2b3-4f02-890b-a6c01078bc90"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.4362234S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e07e4107-4cbf-40a8-82e5-38e561ce91fb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "423fe4c8-b118-4b24-b388-95a5cf68a370"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.6237049S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "fc86ff2d-fa97-4cea-bcc4-4e5b76114a22"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e1cbdc41-efe2-4332-b016-f4bb17e3ef42"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.8424765S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5965f15e-d2e4-4fa4-b8b0-346061b867d1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "dbae4a33-fa60-4f8d-98d1-422a1ba0826f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.0237575S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7b5e0119-f68a-45ae-9dca-7864b5ddade1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6e87cf19-d6f1-446d-a1a3-f0c8a167fbe1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.2112701S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "382bf3df-225a-4c60-bb81-9def9811f1d6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0ae95b7c-68fc-419c-bb79-ae8d7da96921"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.4049842S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "6c917877-10ef-4ab4-b19f-840f7c8b0ef1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2edbb503-8bda-4a53-9958-d97ed8d0e616"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.5924711S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "7c1afbbf-f1b2-4cb5-9e61-644e87f368e3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7306e169-8bdd-48a7-a942-f9c88f34fc6c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.8112253S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "524c5669-c8da-4f02-a782-ecbada4b512a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "012f1d9e-8136-4b44-a809-fe8f0b2b06b4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.9831225S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "08ac1b34-a64c-4efa-a86b-d3804eb7b38d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c9042c3a-cc03-4585-b94f-4553a6476c69"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT23.1706254S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5c500d65-8c28-4b3e-885b-593423cb2c1b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8a068b4f-ad15-45be-8403-52de8bd71b76"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT23.3518815S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4d8ae0a9-9e24-452d-8150-dc8f3906d4f7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2789f809-277a-49a9-8955-b8421896da59"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT23.5612558S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "386188ed-1c70-4d84-8527-2fc3a5abb129"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f38311e5-9b21-44c9-a596-4de3e5342519"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT23.7487394S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ea613315-46f2-4977-a581-ab1ce3e93593"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "10be97ae-3543-4f08-a294-7e5679d71845"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT23.9456747S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bfd2f612-96f2-4325-a382-34c5d56aa508"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3c3d8005-bfe2-477b-99cc-fb17fce4d29f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT24.139369S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8ae16aa0-abc4-4994-926d-452040ff9f00"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "099c4b06-ab36-42b3-8ce4-5196fbab70f6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT24.3206768S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5f5a4af9-2056-42f1-b4ff-0900a82284e9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9761bda7-c5d6-42b0-bc31-9daca3aa8b3d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT24.5237761S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3c6b9ac7-9a6e-4802-abf5-db1637cc545c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9d5bee78-0b52-4cd4-a7f2-fdae549215eb"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT24.7269224S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ae1cf2b9-3fed-495e-82dd-c1d290a72653"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c8a9024a-b40b-4245-956f-0570f40f8f0f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT24.9144051S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "75377a93-7e51-4372-908f-427b929a6f89"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "eea40795-7b96-4881-9837-3565f7079bae"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.1081313S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "34260e91-3002-483c-a8a4-737e8270a2c1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6f21741a-aa10-4296-b108-17cb242cc621"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.2956571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1fa03f23-4c6e-4ad0-9772-85154a14344d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:07 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "31afeadd-1ea5-45c7-bf6b-381e7b8fe1c1"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2130c00b-563f-4e46-a9ca-7a6ee9055f65"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:07 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "935fbc89-aa4a-428d-bf57-6d96cfddab4e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0152ac61-1a79-460b-9989-5e74151eca1b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a9b2dce4-9e8e-41a9-bc96-a0cd760edec0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a5c34456-dd96-4857-a743-a2213d6e5c57"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "dbcd9500-55f9-4e07-8b7d-c60888d6c137"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "cc8c7fe3-5741-498e-92cf-1d5e741054a1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1289739e-2048-4a50-952b-4e824c78e6ce"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0b7db3c8-6496-465b-81b6-7294907e7e35"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "95a31e2e-ebd0-4229-854d-12a1562b8fdf"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f798103f-aead-44b9-bd87-b778578c94fc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "aa699d5b-5e41-4564-a454-d5f453554822"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e189479c-81dc-4a83-b6b3-11931a82b0b3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6eccc59e-3f58-4ecf-8ca1-83f7d0c717b0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c89b8c50-4c18-4b28-b405-e8b3425c4fb3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d85c3348-c69d-40d0-9238-dae370282f81"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3b0217c7-49c5-4d42-8263-ffa2a3d51f37"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b3b3b2f5-3fb5-4c73-a897-62788f1fb30e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ae0843bc-07ee-479f-9802-2588a6897a16"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bb49f3e7-0e8d-4705-bf5c-3fe32ecf6c0e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c92e34ae-6b84-44a8-8b3f-05242ec71c99"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:10 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "be46cbd0-f5d1-43d4-86e3-f0946b4881fa"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "55a61553-e5bb-4fac-9ab0-654919e70639"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:10 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0577487d-5ce2-4caf-8472-376e0ef84fa9"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "77a7c937-61ae-45c2-935e-608975afd649"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:10 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9dad01c8-9b7d-49b4-bc57-f7f908b79caf"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "967fd854-3a25-4df3-9755-fe14e05b15b1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:11 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e5f943ac-6552-436b-81fb-843c0c249d1d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "53878b65-9bdc-493a-b02f-856c5bace41a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:11 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "abf37b5d-85da-4966-b892-4f6d6689acb0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8bb1a20b-f543-4f5a-8c8c-4828be75f044"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:11 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3c51c798-6439-442b-945c-3777e1af909c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b0ef831d-d05a-4160-a717-aec45b518845"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4bf3376d-6f93-4aa4-a464-1c72f0706b1a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "526ecb6e-47e0-49b7-9b3c-531b214432a0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "048d7963-9bf7-403f-8191-521429b7f32f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "00139b11-d79c-4189-bcd0-9cc3fca5c74e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2546a9f2-6db3-4339-9d19-94017d3162aa"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "ef6b7c6a-7bc8-4462-8318-c28eee7b7b22"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "94830058-2e49-4ec6-ac3c-8608e55f957e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5586871f-09c3-459b-9fc3-cc6ede0aebd9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:12 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e669a26a-f84e-46c9-a4fb-46fa16c7277d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f0af1762-b40c-43e6-8042-e6f04cde0634"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "826cd9c2-a818-48e5-821b-04e4f1ea7595"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "b32348f0-1559-42d3-bfc8-bdcedeff123c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "21e61144-cd14-4629-b353-4f26f0939b1e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0.0861045S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "452beb78-4541-420f-83f0-e68dd422ba11"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "00de62ff-f6d0-4d54-b26b-46a8a2322e6f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0.2736053S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c298e296-b60b-41fc-9a25-8442bb3e0177"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "095644ce-5267-490a-b9be-ea1743fd64ff"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0.4611323S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8a6010e4-9d92-4cd0-a2dc-618ebab2b3fd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:14 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3c140114-64a4-46ea-a554-dec9f2f8912a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0.6769395S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d5d53086-a68f-46ce-82a4-0cb7cb8e8d28"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:14 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "350ac1f4-fae0-4be3-967c-3a307aeb60d4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT0.9611212S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a7637250-4236-4865-937e-0a83dc8df3ec"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:14 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7d6685a6-ecf6-4041-9e1e-b05b1ab29cd4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT1.2961432S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bbdf83b3-e786-49ab-a90b-037430ceb077"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:14 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "734cbab8-586f-4de7-b5d9-d359cce94c85"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT1.5236274S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "590c6b47-2dde-4dd2-b4f0-3e4e7f3048bf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:15 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9ae2807a-3670-44d6-991d-c0025259e59e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT1.7173518S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2dcf0132-eb7e-4508-91e9-a09639a8897a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:15 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c794ba5c-ef21-4099-8ab4-d2f1b891e6e8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT1.945491S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1c9e9ff4-3c35-4b23-8494-a98f3811803e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:15 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e323799a-5ce8-4ddc-9485-8ca82246373a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT2.1329933S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2b0f375d-9236-4b2e-840f-55ea5a5459e0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:15 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "167cc322-d46c-48bb-b897-212c7b5a4d1b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT2.364489S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "f1e0be08-fb44-468e-b5ad-e08ecaaf3d7a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:15 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1b4c13a0-6bee-4023-abe4-5e50129dbcae"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT2.6704702S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "df4ce0b5-c079-4efe-9d14-096c2453985f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:16 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "152792b4-fb69-47b2-97e2-c74c7f3d862c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT2.8673806S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c4a5cd64-9e63-4a66-80a7-326cc585f7be"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:16 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4baf299a-a43c-4ffd-ac1b-d6572bf3281f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT3.0988554S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c9d2df20-45cc-4b20-9f8d-175a283575ad"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:16 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "dcdbfa8b-cf54-42d5-b435-cff03c62b295"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT3.3674178S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "91452a5b-ebdd-4ba7-9fd3-ff8d97f097d7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:16 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4f4f6445-456c-44d0-89f2-a96aee1c603c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT3.5392663S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "464e3ea4-43a1-4d57-82ae-ee36a66beef5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:17 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMWM0YTlhMjctNWI5YS00OWIwLWFkMGEtZWI5NmU2NDgyNGU1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "570039da-c813-4d18-bdf5-8d92409cd371"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"NetworkTester@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"startTime\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"endTime\": \"2018-03-21T09:34:17.5157979-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.1561157-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-03-21T09:33:42.3123412-07:00\",\r\n \"details\": \"Compilation:2756013b-cf1b-402d-9d41-395bc4acf549;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0625643-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-03-21T09:34:08.0782079-07:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_7f65684c\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-03-21T09:34:14.0782663-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-03-21T09:34:17.5157979-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"NetworkTester@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_7f65684c\",\r\n \"rootProcessNodeId\": \"481cef21-0eb0-4d7b-9fa8-ca0c4c05bf60\",\r\n \"script\": \"DECLARE @byte_type byte = 0;\\nDECLARE @sbyte_type sbyte = 1;\\nDECLARE @int_type int = 2;\\nDECLARE @uint_type uint = 3;\\nDECLARE @long_type long = 4;\\nDECLARE @ulong_type ulong = 5;\\nDECLARE @float_type float = 6;\\nDECLARE @double_type double = 7;\\nDECLARE @decimal_type decimal = 8;\\nDECLARE @short_type short = 9;\\nDECLARE @ushort_type ushort = 10;\\nDECLARE @char_type char = 'a';\\nDECLARE @string_type string = \\\"test\\\";\\nDECLARE @datetime_type DateTime = new DateTime(2018, 1, 1, 0, 0, 0, 0);\\nDECLARE @bool_type bool = true;\\nDECLARE @guid_type Guid = new Guid(\\\"8dbdd1e8-0675-4cf2-a7f7-5e376fa43c6d\\\");\\nDECLARE @bytearray_type byte[] = new byte[] {\\n 0,\\n 1,\\n 2,\\n};\\nDROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9940.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/03/21/16/33/1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5/algebra.xml\",\r\n \"yarnApplicationId\": 3169789,\r\n \"yarnApplicationTimeStamp\": 1520321064061,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT25.7502231S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156436S\",\r\n \"totalRunningTime\": \"PT3.4375316S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "016f199b-fa29-41de-b517-96399ed9bc7f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:17 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeAnalytics/accounts/ps1883?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMTg4Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "720a9675-a599-4218-b3fc-ea9503e5d09b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "8a9e4749-5965-4166-98c7-d874b43f7347"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "99c6aed0-16fa-44d1-8ab5-34e6ad1a6835"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20180321T163421Z:99c6aed0-16fa-44d1-8ab5-34e6ad1a6835"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:20 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps3997/providers/Microsoft.DataLakeStore/accounts/ps9940?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMzk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5OTQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9acd988b-3cc9-4a7b-813e-bc5b09ac7088"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.7.2633.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "99edc7d5-66dd-40fe-b7d9-9916ba6d7aad"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "de7ca305-ef6f-4b9b-a172-eda5581514b1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20180321T163426Z:de7ca305-ef6f-4b9b-a172-eda5581514b1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:25 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps3997?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMzk5Nz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "8d714725-1bd6-4c0c-88ec-7d8b95bfad1f"
- ],
- "x-ms-correlation-request-id": [
- "8d714725-1bd6-4c0c-88ec-7d8b95bfad1f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20180321T163427Z:8d714725-1bd6-4c0c-88ec-7d8b95bfad1f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:27 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UY3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-request-id": [
- "e715fd7b-bb59-4f18-a8c9-869d7d14f0a1"
- ],
- "x-ms-correlation-request-id": [
- "e715fd7b-bb59-4f18-a8c9-869d7d14f0a1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20180321T163427Z:e715fd7b-bb59-4f18-a8c9-869d7d14f0a1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:27 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UY3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-request-id": [
- "7d4cc851-c4f9-4669-9d83-6ee18c8fa85b"
- ],
- "x-ms-correlation-request-id": [
- "7d4cc851-c4f9-4669-9d83-6ee18c8fa85b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20180321T163442Z:7d4cc851-c4f9-4669-9d83-6ee18c8fa85b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:42 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UY3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-request-id": [
- "11f0c4f9-c79e-4961-a426-ee4c44827a0a"
- ],
- "x-ms-correlation-request-id": [
- "11f0c4f9-c79e-4961-a426-ee4c44827a0a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20180321T163458Z:11f0c4f9-c79e-4961-a426-ee4c44827a0a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 21 Mar 2018 16:34:58 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTctRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UY3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -9454,16 +2461,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14974"
],
"x-ms-request-id": [
- "9adddf94-1c87-4856-b2a6-c458b1d37ccb"
+ "62fde925-b8b1-4409-9769-9e856e9d1188"
],
"x-ms-correlation-request-id": [
- "9adddf94-1c87-4856-b2a6-c458b1d37ccb"
+ "62fde925-b8b1-4409-9769-9e856e9d1188"
],
"x-ms-routing-request-id": [
- "WESTUS:20180321T163513Z:9adddf94-1c87-4856-b2a6-c458b1d37ccb"
+ "AUSTRALIAEAST:20180607T140817Z:62fde925-b8b1-4409-9769-9e856e9d1188"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9475,7 +2482,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Mar 2018 16:35:13 GMT"
+ "Thu, 07 Jun 2018 14:08:16 GMT"
]
},
"StatusCode": 200
@@ -9483,18 +2490,18 @@
],
"Names": {
"": [
- "ps3997",
- "ps1883",
- "ps9940"
+ "ps5188",
+ "ps8037",
+ "ps3427"
],
"jobTest01": [
- "530315f4-7746-479a-8e92-e885a95bd332"
+ "1361f0c6-8e65-40c2-bf93-f9503c84902c"
],
"jobTest03": [
- "1c4a9a27-5b9a-49b0-ad0a-eb96e64824e5"
+ "6a87ee46-bf17-4a97-bbf3-7aa21b08f396"
]
},
"Variables": {
- "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb"
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaJobRelationships.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaJobRelationships.json
index 59cab8532608..33aeea1e2af4 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaJobRelationships.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestAdlaJobRelationships.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-request-id": [
- "7e300c43-2c93-4876-9fea-8b6a0f67a470"
+ "2dd26023-977b-47fa-b2b5-b4818d738828"
],
"x-ms-correlation-request-id": [
- "7e300c43-2c93-4876-9fea-8b6a0f67a470"
+ "2dd26023-977b-47fa-b2b5-b4818d738828"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031701Z:7e300c43-2c93-4876-9fea-8b6a0f67a470"
+ "AUSTRALIAEAST:20180607T134541Z:2dd26023-977b-47fa-b2b5-b4818d738828"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:01 GMT"
+ "Thu, 07 Jun 2018 13:45:40 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14996"
],
"x-ms-request-id": [
- "7147b6fd-4180-4601-b3f5-211cc94b05b8"
+ "1597b2a3-3ffb-45f0-ad4b-df90f41b944d"
],
"x-ms-correlation-request-id": [
- "7147b6fd-4180-4601-b3f5-211cc94b05b8"
+ "1597b2a3-3ffb-45f0-ad4b-df90f41b944d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031701Z:7147b6fd-4180-4601-b3f5-211cc94b05b8"
+ "AUSTRALIAEAST:20180607T134541Z:1597b2a3-3ffb-45f0-ad4b-df90f41b944d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:01 GMT"
+ "Thu, 07 Jun 2018 13:45:41 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6255?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjI1NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4641?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDY0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "124413d3-7977-471a-9986-95f2a81be6a7"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255\",\r\n \"name\": \"ps6255\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641\",\r\n \"name\": \"ps4641\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -130,46 +145,49 @@
"1198"
],
"x-ms-request-id": [
- "b8630494-8980-4e04-9844-e7825505468b"
+ "ab6f4371-659d-41b7-b503-fe78eebe67df"
],
"x-ms-correlation-request-id": [
- "b8630494-8980-4e04-9844-e7825505468b"
+ "ab6f4371-659d-41b7-b503-fe78eebe67df"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031709Z:b8630494-8980-4e04-9844-e7825505468b"
+ "AUSTRALIAEAST:20180607T134550Z:ab6f4371-659d-41b7-b503-fe78eebe67df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:08 GMT"
+ "Thu, 07 Jun 2018 13:45:49 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NzU4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c475d12-0049-492a-98bc-fd9cc47d2d9d"
+ "a94c5da3-18f5-43f7-bdf0-9808f0dc0d59"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps5548' under resource group 'ps6255' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps9758' under resource group 'ps4641' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -187,43 +205,46 @@
"gateway"
],
"x-ms-request-id": [
- "c0586024-8a65-46b3-94aa-3de0c7eda7bc"
+ "3f3843db-4064-4722-90a9-30ea171b0f1a"
],
"x-ms-correlation-request-id": [
- "c0586024-8a65-46b3-94aa-3de0c7eda7bc"
+ "3f3843db-4064-4722-90a9-30ea171b0f1a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031709Z:c0586024-8a65-46b3-94aa-3de0c7eda7bc"
+ "AUSTRALIAEAST:20180607T134551Z:3f3843db-4064-4722-90a9-30ea171b0f1a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:09 GMT"
+ "Thu, 07 Jun 2018 13:45:51 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NzU4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5548.azuredatalakestore.net\",\r\n \"accountId\": \"7542422f-d141-479d-884d-09f2933be6fa\",\r\n \"creationTime\": \"2017-12-07T03:17:14.877729Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:17:14.877729Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"834292cd-3aba-4cdd-a296-380edc41a4e6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548\",\r\n \"name\": \"ps5548\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9758.azuredatalakestore.net\",\r\n \"accountId\": \"9e8589e6-6b4b-476d-8f04-55a8a734c3c2\",\r\n \"creationTime\": \"2018-06-07T13:46:02.3464596Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:46:02.3464596Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"765130b7-b300-46d5-adfa-b37a694a6a6e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758\",\r\n \"name\": \"ps9758\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "906"
+ "992"
],
"Content-Type": [
"application/json"
@@ -235,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "eed8144d-42d4-439a-8d06-beb54a72321d"
+ "746e0002-16fa-4889-9972-80277119cdde"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14971"
],
"x-ms-correlation-request-id": [
- "6eb514cd-b7d4-405f-aa7b-16c482f51147"
+ "e1cc28b6-6e7f-40db-babb-732dcebdd4ae"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031746Z:6eb514cd-b7d4-405f-aa7b-16c482f51147"
+ "AUSTRALIAEAST:20180607T134635Z:e1cc28b6-6e7f-40db-babb-732dcebdd4ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:46 GMT"
+ "Thu, 07 Jun 2018 13:46:34 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -274,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NzU4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f785cce1-177a-48e6-994d-fa450b290c4e"
+ "6165a4bf-23f4-4beb-bd63-93e549760e87"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5548.azuredatalakestore.net\",\r\n \"accountId\": \"7542422f-d141-479d-884d-09f2933be6fa\",\r\n \"creationTime\": \"2017-12-07T03:17:14.877729Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:17:14.877729Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"834292cd-3aba-4cdd-a296-380edc41a4e6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548\",\r\n \"name\": \"ps5548\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9758.azuredatalakestore.net\",\r\n \"accountId\": \"9e8589e6-6b4b-476d-8f04-55a8a734c3c2\",\r\n \"creationTime\": \"2018-06-07T13:46:02.3464596Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:46:02.3464596Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"765130b7-b300-46d5-adfa-b37a694a6a6e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758\",\r\n \"name\": \"ps9758\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "906"
+ "992"
],
"Content-Type": [
"application/json"
@@ -307,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "fb58305e-268a-4ad2-aa64-918630ffa12a"
+ "0392a3fe-da84-4483-8759-fab66847d0ca"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14990"
],
"x-ms-correlation-request-id": [
- "51e017e5-626d-44fc-bdd7-2034efff3731"
+ "0a9399d6-167e-4fbd-9bde-c0eae1f68df4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032409Z:51e017e5-626d-44fc-bdd7-2034efff3731"
+ "AUSTRALIAEAST:20180607T135309Z:0a9399d6-167e-4fbd-9bde-c0eae1f68df4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:24:09 GMT"
+ "Thu, 07 Jun 2018 13:53:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -346,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NzU4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "56e3c66e-005b-47f0-af44-fd0dc4191e78"
+ "d606026f-fb08-4495-b119-857f2a1c1def"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7542422f-d141-479d-884d-09f2933be6fa\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548\",\r\n \"name\": \"ps5548\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"9e8589e6-6b4b-476d-8f04-55a8a734c3c2\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758\",\r\n \"name\": \"ps9758\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -388,10 +403,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7542422f-d141-479d-884d-09f2933be6fa0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9e8589e6-6b4b-476d-8f04-55a8a734c3c20?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "fbe1a945-3cb0-4bf7-9576-84b73736a05b"
+ "47de9c51-30c7-44a8-a922-88a603e605c6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -400,25 +415,22 @@
"1197"
],
"x-ms-correlation-request-id": [
- "850af3fc-ce81-44d4-8680-0acd7f0d5a26"
+ "a19501b6-874f-4f09-b1db-2fe7ea9344b9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031714Z:850af3fc-ce81-44d4-8680-0acd7f0d5a26"
+ "AUSTRALIAEAST:20180607T134559Z:a19501b6-874f-4f09-b1db-2fe7ea9344b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:13 GMT"
+ "Thu, 07 Jun 2018 13:45:59 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -433,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7542422f-d141-479d-884d-09f2933be6fa0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc1NDI0MjJmLWQxNDEtNDc5ZC04ODRkLTA5ZjI5MzNiZTZmYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9e8589e6-6b4b-476d-8f04-55a8a734c3c20?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzllODU4OWU2LTZiNGItNDc2ZC04ZjA0LTU1YThhNzM0YzNjMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -460,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "650d606c-3f28-4ea6-a89c-68321ce943ae"
+ "1214d734-8ac6-49ed-9024-424b001faa7f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14974"
],
"x-ms-correlation-request-id": [
- "2f74235d-90c0-449d-bad9-409221cac59e"
+ "3abf02e2-9344-4aa8-85bb-a28d217d6a3e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031724Z:2f74235d-90c0-449d-bad9-409221cac59e"
+ "AUSTRALIAEAST:20180607T134611Z:3abf02e2-9344-4aa8-85bb-a28d217d6a3e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:24 GMT"
+ "Thu, 07 Jun 2018 13:46:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -499,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7542422f-d141-479d-884d-09f2933be6fa0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc1NDI0MjJmLWQxNDEtNDc5ZC04ODRkLTA5ZjI5MzNiZTZmYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9e8589e6-6b4b-476d-8f04-55a8a734c3c20?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzllODU4OWU2LTZiNGItNDc2ZC04ZjA0LTU1YThhNzM0YzNjMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -526,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "2c021e00-2521-473c-9ab5-3a8390c63f91"
+ "8d8c3411-64c7-447c-9b4c-13052c51dade"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14973"
],
"x-ms-correlation-request-id": [
- "30d2d8e4-cc4c-461d-bdac-d04c28c89932"
+ "e6910c56-1450-485b-a021-6a1c5e46c80f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031735Z:30d2d8e4-cc4c-461d-bdac-d04c28c89932"
+ "AUSTRALIAEAST:20180607T134622Z:e6910c56-1450-485b-a021-6a1c5e46c80f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:35 GMT"
+ "Thu, 07 Jun 2018 13:46:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -565,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7542422f-d141-479d-884d-09f2933be6fa0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc1NDI0MjJmLWQxNDEtNDc5ZC04ODRkLTA5ZjI5MzNiZTZmYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/9e8589e6-6b4b-476d-8f04-55a8a734c3c20?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzllODU4OWU2LTZiNGItNDc2ZC04ZjA0LTU1YThhNzM0YzNjMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -592,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d1640e5f-6025-4868-8cb6-c0cd4d3ce3e8"
+ "2fa6a9b0-439b-49a2-a388-f63a906e71b0"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14972"
],
"x-ms-correlation-request-id": [
- "91fa89dd-0c23-4b22-9a86-820a911283d6"
+ "01152777-579e-4876-9bcd-6f141eca16a2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031746Z:91fa89dd-0c23-4b22-9a86-820a911283d6"
+ "AUSTRALIAEAST:20180607T134634Z:01152777-579e-4876-9bcd-6f141eca16a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:45 GMT"
+ "Thu, 07 Jun 2018 13:46:33 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -631,25 +634,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b382bb36-213d-45e6-9585-d2a3fe185c08"
+ "8d4b96f1-e723-4aae-bc8b-e664b886e6ac"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4960' under resource group 'ps6255' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9314' under resource group 'ps4641' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -667,46 +670,49 @@
"gateway"
],
"x-ms-request-id": [
- "48963c36-10b3-4fcc-8f92-16866e1bdfd4"
+ "6cb4759c-28df-4115-bff8-cbaab429d2aa"
],
"x-ms-correlation-request-id": [
- "48963c36-10b3-4fcc-8f92-16866e1bdfd4"
+ "6cb4759c-28df-4115-bff8-cbaab429d2aa"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031747Z:48963c36-10b3-4fcc-8f92-16866e1bdfd4"
+ "AUSTRALIAEAST:20180607T134637Z:6cb4759c-28df-4115-bff8-cbaab429d2aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:46 GMT"
+ "Thu, 07 Jun 2018 13:46:36 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee560e9b-b3cf-40d6-b56d-f4c4fb2c5c95"
+ "12d54b89-4537-484e-9f08-31e6a45b3326"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4960' under resource group 'ps6255' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps9314' under resource group 'ps4641' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -724,43 +730,46 @@
"gateway"
],
"x-ms-request-id": [
- "341f561b-60cd-4d3b-8879-bbeb46462431"
+ "a6c6ce76-d5b8-48e9-aa13-632f656a03c7"
],
"x-ms-correlation-request-id": [
- "341f561b-60cd-4d3b-8879-bbeb46462431"
+ "a6c6ce76-d5b8-48e9-aa13-632f656a03c7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031747Z:341f561b-60cd-4d3b-8879-bbeb46462431"
+ "AUSTRALIAEAST:20180607T134637Z:a6c6ce76-d5b8-48e9-aa13-632f656a03c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:47 GMT"
+ "Thu, 07 Jun 2018 13:46:37 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5548\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5548\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4960.azuredatalakeanalytics.net\",\r\n \"accountId\": \"325f2729-ea33-452f-b0c8-1d27bf7e2973\",\r\n \"creationTime\": \"2017-12-07T03:17:52.5670949Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:17:52.5670949Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960\",\r\n \"name\": \"ps4960\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9758\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9314.azuredatalakeanalytics.net\",\r\n \"accountId\": \"882d0af6-12c0-473d-b328-16577d1c617f\",\r\n \"creationTime\": \"2018-06-07T13:46:43.749746Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:46:43.749746Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314\",\r\n \"name\": \"ps9314\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -772,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "04075dc2-3472-4d67-8acf-00ec231eddbb"
+ "4a3dd399-a4a7-4a28-a89e-dbaccb306559"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14937"
],
"x-ms-correlation-request-id": [
- "001bdc26-5415-47e1-aec2-bff2ef15d17a"
+ "f3d8267d-b266-4b88-824f-214c0ac7bdf7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031822Z:001bdc26-5415-47e1-aec2-bff2ef15d17a"
+ "AUSTRALIAEAST:20180607T134718Z:f3d8267d-b266-4b88-824f-214c0ac7bdf7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:18:22 GMT"
+ "Thu, 07 Jun 2018 13:47:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -811,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "593ecc8c-e5d4-4ddd-9e1b-8ab43e22aa32"
+ "2ae456ff-97c2-40f3-b2f2-3ee5952f2058"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5548\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5548\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4960.azuredatalakeanalytics.net\",\r\n \"accountId\": \"325f2729-ea33-452f-b0c8-1d27bf7e2973\",\r\n \"creationTime\": \"2017-12-07T03:17:52.5670949Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:17:52.5670949Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960\",\r\n \"name\": \"ps4960\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9758\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9314.azuredatalakeanalytics.net\",\r\n \"accountId\": \"882d0af6-12c0-473d-b328-16577d1c617f\",\r\n \"creationTime\": \"2018-06-07T13:46:43.749746Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:46:43.749746Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314\",\r\n \"name\": \"ps9314\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -844,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "f818c2d5-5fa7-4671-95ee-e60a80204b18"
+ "2ad7ed69-0a51-4373-b6df-2c8541e5fcd7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14936"
],
"x-ms-correlation-request-id": [
- "01a8f3e5-1e62-4bd1-90c1-d21b2a6457dd"
+ "41145453-b366-4f31-9a13-0f83c37114c7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031823Z:01a8f3e5-1e62-4bd1-90c1-d21b2a6457dd"
+ "AUSTRALIAEAST:20180607T134719Z:41145453-b366-4f31-9a13-0f83c37114c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:18:23 GMT"
+ "Thu, 07 Jun 2018 13:47:19 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -883,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7d3289e9-24db-4567-87fb-9f661587a509"
+ "e2f43053-c593-4e72-8287-4c04509d7302"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps5548\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5548\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4960.azuredatalakeanalytics.net\",\r\n \"accountId\": \"325f2729-ea33-452f-b0c8-1d27bf7e2973\",\r\n \"creationTime\": \"2017-12-07T03:17:52.5670949Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:17:52.5670949Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960\",\r\n \"name\": \"ps4960\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps9758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9758\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps9314.azuredatalakeanalytics.net\",\r\n \"accountId\": \"882d0af6-12c0-473d-b328-16577d1c617f\",\r\n \"creationTime\": \"2018-06-07T13:46:43.749746Z\",\r\n \"lastModifiedTime\": \"2018-06-07T13:46:43.749746Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314\",\r\n \"name\": \"ps9314\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1235"
],
"Content-Type": [
"application/json"
@@ -916,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "8e4d51ba-8e9f-483e-bd2a-ceaadea72c82"
+ "e582cacd-efe6-4c85-b154-1784009aaaea"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14983"
],
"x-ms-correlation-request-id": [
- "fbaa1583-6628-451f-ae3a-2251010a4064"
+ "039b7c0b-e199-49f2-9193-18c8cf3d1012"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032354Z:fbaa1583-6628-451f-ae3a-2251010a4064"
+ "AUSTRALIAEAST:20180607T135300Z:039b7c0b-e199-49f2-9193-18c8cf3d1012"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:54 GMT"
+ "Thu, 07 Jun 2018 13:52:59 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -955,34 +955,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5548\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps5548\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps9758\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "2846babc-a151-4f65-88f8-6e2de7f5362a"
+ "f8d913a1-d6e9-4a8e-8cd7-9d8d6ee4178d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps5548\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps5548\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"325f2729-ea33-452f-b0c8-1d27bf7e2973\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960\",\r\n \"name\": \"ps4960\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps9758\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps9758\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"882d0af6-12c0-473d-b328-16577d1c617f\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314\",\r\n \"name\": \"ps9314\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "487"
],
"Content-Type": [
"application/json"
@@ -997,37 +997,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/325f2729-ea33-452f-b0c8-1d27bf7e29730?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/882d0af6-12c0-473d-b328-16577d1c617f0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "7a8f4f75-4d49-45ef-9561-6c898cca3b58"
+ "60eaf316-208b-40ff-be78-022e76902be1"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1194"
],
"x-ms-correlation-request-id": [
- "85706ce0-fa45-4339-bd62-0b2cf34fc88d"
+ "d2bd5b0a-6ffb-401a-b650-2562fb0bb263"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031749Z:85706ce0-fa45-4339-bd62-0b2cf34fc88d"
+ "AUSTRALIAEAST:20180607T134642Z:d2bd5b0a-6ffb-401a-b650-2562fb0bb263"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:17:49 GMT"
+ "Thu, 07 Jun 2018 13:46:42 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1042,16 +1039,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/325f2729-ea33-452f-b0c8-1d27bf7e29730?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zMjVmMjcyOS1lYTMzLTQ1MmYtYjBjOC0xZDI3YmY3ZTI5NzMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/882d0af6-12c0-473d-b328-16577d1c617f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy84ODJkMGFmNi0xMmMwLTQ3M2QtYjMyOC0xNjU3N2QxYzYxN2YwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1069,31 +1066,28 @@
"no-cache"
],
"x-ms-request-id": [
- "d21bc46a-b151-4edc-ba63-989d14edc325"
+ "66d70b9e-e5e5-49a0-b94c-80303baae4ad"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14940"
],
"x-ms-correlation-request-id": [
- "b8151e0c-30ee-43ac-9146-8cfcad9a39fa"
+ "3d59c403-033d-439d-9261-c82f27a5b76b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031800Z:b8151e0c-30ee-43ac-9146-8cfcad9a39fa"
+ "AUSTRALIAEAST:20180607T134654Z:3d59c403-033d-439d-9261-c82f27a5b76b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:18:00 GMT"
+ "Thu, 07 Jun 2018 13:46:53 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1108,16 +1102,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/325f2729-ea33-452f-b0c8-1d27bf7e29730?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zMjVmMjcyOS1lYTMzLTQ1MmYtYjBjOC0xZDI3YmY3ZTI5NzMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/882d0af6-12c0-473d-b328-16577d1c617f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy84ODJkMGFmNi0xMmMwLTQ3M2QtYjMyOC0xNjU3N2QxYzYxN2YwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1135,31 +1129,28 @@
"no-cache"
],
"x-ms-request-id": [
- "45cf101f-7f3b-4697-92cf-5a683cfdf7dd"
+ "e2fca1c9-2397-49ca-a2cf-8519ece44534"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14939"
],
"x-ms-correlation-request-id": [
- "9f604def-924f-4583-84d2-8dae7ad61ba3"
+ "a6860dea-4b26-41bd-8dba-62bab00672d2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031810Z:9f604def-924f-4583-84d2-8dae7ad61ba3"
+ "AUSTRALIAEAST:20180607T134705Z:a6860dea-4b26-41bd-8dba-62bab00672d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:18:10 GMT"
+ "Thu, 07 Jun 2018 13:47:04 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1174,16 +1165,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/325f2729-ea33-452f-b0c8-1d27bf7e29730?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zMjVmMjcyOS1lYTMzLTQ1MmYtYjBjOC0xZDI3YmY3ZTI5NzMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/882d0af6-12c0-473d-b328-16577d1c617f0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy84ODJkMGFmNi0xMmMwLTQ3M2QtYjMyOC0xNjU3N2QxYzYxN2YwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1201,31 +1192,28 @@
"no-cache"
],
"x-ms-request-id": [
- "37cab415-5f34-47d0-9b7e-621dd40223bf"
+ "92378e75-e7b2-4e31-b1a2-a2482b43c001"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14938"
],
"x-ms-correlation-request-id": [
- "cb279bef-3bd4-433f-bce0-3fd4b94285b6"
+ "efe8ecdb-ca8a-4e7f-9a4e-da3a60849d31"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T031821Z:cb279bef-3bd4-433f-bce0-3fd4b94285b6"
+ "AUSTRALIAEAST:20180607T134716Z:efe8ecdb-ca8a-4e7f-9a4e-da3a60849d31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:18:21 GMT"
+ "Thu, 07 Jun 2018 13:47:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1240,31 +1228,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6ba6077c-38de-4242-9e6d-a112864a22df?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJhNjA3N2MtMzhkZS00MjQyLTllNmQtYTExMjg2NGEyMmRmP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f235f6f3-42a0-4013-a5e4-db4e52c845f8?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjIzNWY2ZjMtNDJhMC00MDEzLWE1ZTQtZGI0ZTUyYzg0NWY4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n },\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"name\": \"TestJob\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n },\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "523"
+ "522"
],
"x-ms-client-request-id": [
- "9041e4fa-03d6-4c0e-8a32-a84d99194084"
+ "ee04c5c5-a62b-4086-b4a5-e44a894edf6a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1276,7 +1264,7 @@
"chunked"
],
"x-ms-request-id": [
- "5e519248-64d9-4359-a3b2-8b95ba74d622"
+ "156640ef-e519-4e58-8cc5-258df612a869"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1288,31 +1276,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:24 GMT"
+ "Thu, 07 Jun 2018 13:52:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6ba6077c-38de-4242-9e6d-a112864a22df?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJhNjA3N2MtMzhkZS00MjQyLTllNmQtYTExMjg2NGEyMmRmP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f235f6f3-42a0-4013-a5e4-db4e52c845f8?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjIzNWY2ZjMtNDJhMC00MDEzLWE1ZTQtZGI0ZTUyYzg0NWY4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbfdca8d-35e9-488c-b4de-a40e19b5b265"
+ "66d9838e-5c88-4ddc-b5a0-8ef0d1b0cd19"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T19:23:25.347638-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.3079366S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:52:22.6504348+08:00\",\r\n \"details\": \"Compilation:659441ea-bd7a-4a80-ba95-f7acc46cb108;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.5038003S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1324,7 +1312,7 @@
"chunked"
],
"x-ms-request-id": [
- "35e37e83-50ee-4970-9e71-338b236456a6"
+ "394c598b-bb5f-43da-95f7-e6a0d38ed9fb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1336,31 +1324,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:25 GMT"
+ "Thu, 07 Jun 2018 13:52:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6ba6077c-38de-4242-9e6d-a112864a22df?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJhNjA3N2MtMzhkZS00MjQyLTllNmQtYTExMjg2NGEyMmRmP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f235f6f3-42a0-4013-a5e4-db4e52c845f8?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjIzNWY2ZjMtNDJhMC00MDEzLWE1ZTQtZGI0ZTUyYzg0NWY4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ef23694-1d48-49d7-85a2-d7bb3a345eda"
+ "675abf84-e6f2-4afa-ae25-286068ae87e0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T19:23:25.347638-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.667341S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:52:22.6504348+08:00\",\r\n \"details\": \"Compilation:659441ea-bd7a-4a80-ba95-f7acc46cb108;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT6.1987423S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1372,7 +1360,7 @@
"chunked"
],
"x-ms-request-id": [
- "231903a2-a76d-4151-814b-6d44e232c5f8"
+ "2615f40d-c95f-47c2-a3a2-92450b1c7449"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1384,31 +1372,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:30 GMT"
+ "Thu, 07 Jun 2018 13:52:28 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6ba6077c-38de-4242-9e6d-a112864a22df?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJhNjA3N2MtMzhkZS00MjQyLTllNmQtYTExMjg2NGEyMmRmP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f235f6f3-42a0-4013-a5e4-db4e52c845f8?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjIzNWY2ZjMtNDJhMC00MDEzLWE1ZTQtZGI0ZTUyYzg0NWY4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0793e73a-9c75-4938-a059-da07e8226ccb"
+ "787f26bb-431a-4632-8d84-943ab1cef230"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T19:23:25.347638-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.9794606S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:52:22.6504348+08:00\",\r\n \"details\": \"Compilation:659441ea-bd7a-4a80-ba95-f7acc46cb108;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6289597S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1420,7 +1408,7 @@
"chunked"
],
"x-ms-request-id": [
- "950914c3-0935-472d-a78f-0da764a77855"
+ "7fad94b9-ff03-44f5-93c8-949d5ee06aac"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1432,31 +1420,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:36 GMT"
+ "Thu, 07 Jun 2018 13:52:34 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6ba6077c-38de-4242-9e6d-a112864a22df?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJhNjA3N2MtMzhkZS00MjQyLTllNmQtYTExMjg2NGEyMmRmP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f235f6f3-42a0-4013-a5e4-db4e52c845f8?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjIzNWY2ZjMtNDJhMC00MDEzLWE1ZTQtZGI0ZTUyYzg0NWY4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "185304f2-2535-45c8-a10c-3862a294def5"
+ "2915b0eb-612f-4cd5-aaee-3566b12a6054"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T19:23:25.347638-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.1916328-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.2072496-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:d5140dff-1e5e-4372-b89a-46979ade785f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.2228728-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"d5140dff-1e5e-4372-b89a-46979ade785f\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/algebra.xml\",\r\n \"yarnApplicationId\": 1030112,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8439948S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156168S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:52:22.6504348+08:00\",\r\n \"details\": \"Compilation:659441ea-bd7a-4a80-ba95-f7acc46cb108;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.7912134+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.8068343+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b89d662f-f213-4caf-834b-bf609a407523\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.8224612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"b89d662f-f213-4caf-834b-bf609a407523\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/algebra.xml\",\r\n \"yarnApplicationId\": 1733608,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.1407786S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156209S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1468,7 +1456,7 @@
"chunked"
],
"x-ms-request-id": [
- "10b87cce-f35b-48c3-8821-e0ed11fcd354"
+ "0aff5481-e6f2-4fb0-98b4-fc0e75fcb928"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1480,31 +1468,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:41 GMT"
+ "Thu, 07 Jun 2018 13:52:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6ba6077c-38de-4242-9e6d-a112864a22df?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJhNjA3N2MtMzhkZS00MjQyLTllNmQtYTExMjg2NGEyMmRmP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f235f6f3-42a0-4013-a5e4-db4e52c845f8?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjIzNWY2ZjMtNDJhMC00MDEzLWE1ZTQtZGI0ZTUyYzg0NWY4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df35e8ee-6b6f-48b3-9745-74fd71081882"
+ "469cb202-7d0d-499f-a1b5-5c9ec708c445"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"startTime\": \"2017-12-06T19:23:44.9574288-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T19:23:25.347638-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.1916328-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.2072496-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:d5140dff-1e5e-4372-b89a-46979ade785f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.2228728-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T19:23:44.9574288-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"d5140dff-1e5e-4372-b89a-46979ade785f\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/algebra.xml\",\r\n \"yarnApplicationId\": 1030112,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8439948S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156168S\",\r\n \"totalRunningTime\": \"PT2.5412909S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"startTime\": \"2018-06-07T21:52:43.4006598+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:52:22.6504348+08:00\",\r\n \"details\": \"Compilation:659441ea-bd7a-4a80-ba95-f7acc46cb108;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.7912134+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.8068343+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b89d662f-f213-4caf-834b-bf609a407523\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.8224612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T21:52:43.4006598+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"b89d662f-f213-4caf-834b-bf609a407523\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/algebra.xml\",\r\n \"yarnApplicationId\": 1733608,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.1407786S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156209S\",\r\n \"totalRunningTime\": \"PT1.9842292S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1516,7 +1504,7 @@
"chunked"
],
"x-ms-request-id": [
- "98956369-de86-44d7-b42e-b4a482a6ce30"
+ "50278e47-cc2b-47e6-9407-79d98f785537"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1528,31 +1516,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:47 GMT"
+ "Thu, 07 Jun 2018 13:52:45 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/6ba6077c-38de-4242-9e6d-a112864a22df?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvNmJhNjA3N2MtMzhkZS00MjQyLTllNmQtYTExMjg2NGEyMmRmP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs/f235f6f3-42a0-4013-a5e4-db4e52c845f8?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjIzNWY2ZjMtNDJhMC00MDEzLWE1ZTQtZGI0ZTUyYzg0NWY4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff6ea1f8-ff71-444b-ae4b-feb202d2fc95"
+ "412043ad-e08e-4782-a73d-9ffc29114071"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"startTime\": \"2017-12-06T19:23:44.9574288-08:00\",\r\n \"endTime\": \"2017-12-06T19:23:51.9888535-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-06T19:23:25.347638-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.1916328-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.2072496-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:d5140dff-1e5e-4372-b89a-46979ade785f\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-06T19:23:36.2228728-08:00\",\r\n \"details\": \"runtimeVersion:adl_vnext_15a50a63\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-06T19:23:44.9574288-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-12-06T19:23:51.9888535-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_vnext_15a50a63\",\r\n \"rootProcessNodeId\": \"d5140dff-1e5e-4372-b89a-46979ade785f\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps5548.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/07/03/23/6ba6077c-38de-4242-9e6d-a112864a22df/algebra.xml\",\r\n \"yarnApplicationId\": 1030112,\r\n \"yarnApplicationTimeStamp\": 1512016124044,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8439948S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156168S\",\r\n \"totalRunningTime\": \"PT7.0314247S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"startTime\": \"2018-06-07T21:52:43.4006598+08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:52:22.6504348+08:00\",\r\n \"details\": \"Compilation:659441ea-bd7a-4a80-ba95-f7acc46cb108;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.7912134+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.8068343+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b89d662f-f213-4caf-834b-bf609a407523\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.8224612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T21:52:43.4006598+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"b89d662f-f213-4caf-834b-bf609a407523\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/algebra.xml\",\r\n \"yarnApplicationId\": 1733608,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.1407786S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156209S\",\r\n \"totalRunningTime\": \"PT7.4876819S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1564,7 +1552,7 @@
"chunked"
],
"x-ms-request-id": [
- "e4eea6e4-9ce7-46ac-8c24-e0871ad96336"
+ "638ea36b-815b-4cc4-8f50-cc4cdac96795"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1576,31 +1564,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:52 GMT"
+ "Thu, 07 Jun 2018 13:52:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=related/pipelineId%20eq%20guid'19aec406-6e5a-4f50-b06e-8eb4e31e0733'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1yZWxhdGVkL3BpcGVsaW5lSWQlMjBlcSUyMGd1aWQnMTlhZWM0MDYtNmU1YS00ZjUwLWIwNmUtOGViNGUzMWUwNzMzJyYkb3JkZXJieT1zdWJtaXRUaW1lJTIwZGVzYyZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/jobs/f235f6f3-42a0-4013-a5e4-db4e52c845f8?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnMvZjIzNWY2ZjMtNDJhMC00MDEzLWE1ZTQtZGI0ZTUyYzg0NWY4P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7289a9b1-6cbf-4129-a9b6-503e9dbe1607"
+ "8485a002-1ffe-493d-b8f2-542a7efb5113"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"startTime\": \"2017-12-06T19:23:44.9574288-08:00\",\r\n \"endTime\": \"2017-12-06T19:23:51.9888535-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"startTime\": \"2018-06-07T21:52:43.4006598+08:00\",\r\n \"endTime\": \"2018-06-07T21:52:54.1351503+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2018-06-07T21:52:22.6504348+08:00\",\r\n \"details\": \"Compilation:659441ea-bd7a-4a80-ba95-f7acc46cb108;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.7912134+08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.8068343+08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b89d662f-f213-4caf-834b-bf609a407523\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2018-06-07T21:52:36.8224612+08:00\",\r\n \"details\": \"runtimeVersion:release_20180315_adl_991096\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2018-06-07T21:52:43.4006598+08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2018-06-07T21:52:54.1351503+08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"release_20180315_adl_991096\",\r\n \"rootProcessNodeId\": \"b89d662f-f213-4caf-834b-bf609a407523\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://ps9758.azuredatalakestore.net/system/jobservice/jobs/Usql/2018/06/07/13/52/f235f6f3-42a0-4013-a5e4-db4e52c845f8/algebra.xml\",\r\n \"yarnApplicationId\": 1733608,\r\n \"yarnApplicationTimeStamp\": 1527892748047,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.1407786S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156209S\",\r\n \"totalRunningTime\": \"PT10.7344905S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1612,7 +1600,7 @@
"chunked"
],
"x-ms-request-id": [
- "187e5d2a-272f-4cd1-984c-c86eb81ac9a0"
+ "ec98f38b-b5a6-42d2-be9b-cca26cf82a46"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1624,31 +1612,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:52 GMT"
+ "Thu, 07 Jun 2018 13:52:55 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=related/recurrenceId%20eq%20guid'7a853626-c12d-412f-b09a-2320a8e4469a'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1yZWxhdGVkL3JlY3VycmVuY2VJZCUyMGVxJTIwZ3VpZCc3YTg1MzYyNi1jMTJkLTQxMmYtYjA5YS0yMzIwYThlNDQ2OWEnJiRvcmRlcmJ5PXN1Ym1pdFRpbWUlMjBkZXNjJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs?$filter=related/pipelineId%20eq%20guid'30aca7ed-d537-494f-8dc6-746cbd85678e'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1yZWxhdGVkL3BpcGVsaW5lSWQlMjBlcSUyMGd1aWQnMzBhY2E3ZWQtZDUzNy00OTRmLThkYzYtNzQ2Y2JkODU2NzhlJyYkb3JkZXJieT1zdWJtaXRUaW1lJTIwZGVzYyZhcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99d40aa4-ce87-47d5-82b0-a4d03d6cad7f"
+ "bc5f3fbc-32e4-438e-b169-b14dbd4cbdf6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"6ba6077c-38de-4242-9e6d-a112864a22df\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"startTime\": \"2017-12-06T19:23:44.9574288-08:00\",\r\n \"endTime\": \"2017-12-06T19:23:51.9888535-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"startTime\": \"2018-06-07T21:52:43.4006598+08:00\",\r\n \"endTime\": \"2018-06-07T21:52:54.1351503+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1660,7 +1648,7 @@
"chunked"
],
"x-ms-request-id": [
- "2a44b091-c9a7-4498-9a21-42cdf156eea8"
+ "545965be-40cf-4f05-9a96-49f379e8f63b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1672,31 +1660,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:52 GMT"
+ "Thu, 07 Jun 2018 13:52:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/recurrences?api-version=2016-11-01",
- "EncodedRequestUri": "L3JlY3VycmVuY2VzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/jobs?$filter=related/recurrenceId%20eq%20guid'c358ddca-3a7a-4406-b4d6-cba941087438'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1yZWxhdGVkL3JlY3VycmVuY2VJZCUyMGVxJTIwZ3VpZCdjMzU4ZGRjYS0zYTdhLTQ0MDYtYjRkNi1jYmE5NDEwODc0MzgnJiRvcmRlcmJ5PXN1Ym1pdFRpbWUlMjBkZXNjJmFwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d950a09b-fb8f-46d4-a765-0f3b80c50a68"
+ "7d79cb6c-6c6e-43dd-a1ac-504532acb87e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0019531735277777775,\r\n \"lastSubmitTime\": \"2017-12-06T19:23:24.7695059-08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"f235f6f3-42a0-4013-a5e4-db4e52c845f8\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"startTime\": \"2018-06-07T21:52:43.4006598+08:00\",\r\n \"endTime\": \"2018-06-07T21:52:54.1351503+08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"runId\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1708,7 +1696,7 @@
"chunked"
],
"x-ms-request-id": [
- "b7ad9baa-96cb-4721-a083-9627a9b81ac5"
+ "0493e976-dbd4-4afe-abeb-ac81a2e3143d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1720,31 +1708,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:53 GMT"
+ "Thu, 07 Jun 2018 13:52:56 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/recurrences/7a853626-c12d-412f-b09a-2320a8e4469a?api-version=2016-11-01",
- "EncodedRequestUri": "L3JlY3VycmVuY2VzLzdhODUzNjI2LWMxMmQtNDEyZi1iMDlhLTIzMjBhOGU0NDY5YT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/recurrences?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3JlY3VycmVuY2VzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58891b0a-5da7-4d4e-b8c1-38663815c5e0"
+ "849f6760-a074-4091-9bc1-3b0a9510ec5f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"recurrenceId\": \"7a853626-c12d-412f-b09a-2320a8e4469a\",\r\n \"recurrenceName\": \"ps5187\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0019531735277777775,\r\n \"lastSubmitTime\": \"2017-12-06T19:23:24.7695059-08:00\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0029818029166666666,\r\n \"lastSubmitTime\": \"2018-06-07T21:52:21.2754444+08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1756,7 +1744,7 @@
"chunked"
],
"x-ms-request-id": [
- "594957e0-a05c-45bb-b38d-8725a3727efa"
+ "7eb1eeca-ca4d-4b39-a63f-ee100de1964b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1768,31 +1756,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:53 GMT"
+ "Thu, 07 Jun 2018 13:52:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/pipelines?api-version=2016-11-01",
- "EncodedRequestUri": "L3BpcGVsaW5lcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/recurrences/c358ddca-3a7a-4406-b4d6-cba941087438?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3JlY3VycmVuY2VzL2MzNThkZGNhLTNhN2EtNDQwNi1iNGQ2LWNiYTk0MTA4NzQzOD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ffb9721-02bd-4a49-ab32-f31aa39dbb79"
+ "d85dc3b0-9ed9-4396-9511-89964dc53d64"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0019531735277777775,\r\n \"lastSubmitTime\": \"2017-12-06T19:23:24.7695059-08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"recurrenceId\": \"c358ddca-3a7a-4406-b4d6-cba941087438\",\r\n \"recurrenceName\": \"ps5658\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0029818029166666666,\r\n \"lastSubmitTime\": \"2018-06-07T21:52:21.2754444+08:00\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1804,7 +1792,7 @@
"chunked"
],
"x-ms-request-id": [
- "adf4543e-b298-4305-837d-0e6a2cafd781"
+ "f98d527f-5768-49d7-9091-f7828ed7b55b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1816,31 +1804,31 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:53 GMT"
+ "Thu, 07 Jun 2018 13:52:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/pipelines/19aec406-6e5a-4f50-b06e-8eb4e31e0733?api-version=2016-11-01",
- "EncodedRequestUri": "L3BpcGVsaW5lcy8xOWFlYzQwNi02ZTVhLTRmNTAtYjA2ZS04ZWI0ZTMxZTA3MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/pipelines?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3BpcGVsaW5lcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f396bc2-afc6-428d-8dbb-8387a277ae56"
+ "18ebf083-d409-4c1a-a9d6-414ed88e5ed8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"pipelineId\": \"19aec406-6e5a-4f50-b06e-8eb4e31e0733\",\r\n \"pipelineName\": \"ps8264\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0019531735277777775,\r\n \"lastSubmitTime\": \"2017-12-06T19:23:24.7695059-08:00\",\r\n \"runs\": [\r\n {\r\n \"item1\": \"81f498ea-72fc-4344-b5ef-9852e6fce2ab\",\r\n \"item2\": \"2017-12-06T19:23:24.7695059-08:00\"\r\n }\r\n ],\r\n \"recurrences\": [\r\n \"7a853626-c12d-412f-b09a-2320a8e4469a\"\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0029818029166666666,\r\n \"lastSubmitTime\": \"2018-06-07T21:52:21.2754444+08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1852,7 +1840,7 @@
"chunked"
],
"x-ms-request-id": [
- "c60f29bf-fd1b-42fa-bc73-501278974762"
+ "683a1c48-162e-4b1d-a085-32b8d00716ee"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1864,169 +1852,76 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:23:53 GMT"
+ "Thu, 07 Jun 2018 13:52:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDk2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/pipelines/30aca7ed-d537-494f-8dc6-746cbd85678e?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3BpcGVsaW5lcy8zMGFjYTdlZC1kNTM3LTQ5NGYtOGRjNi03NDZjYmQ4NTY3OGU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20d0e213-09c0-4db3-8875-70dbde314356"
+ "8530bbbf-6891-46f6-8999-128b0d5ac65e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
- "OSName/Windows10Enterprise",
- "OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/325f2729-ea33-452f-b0c8-1d27bf7e29731?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "b34b6208-9efa-4c0a-a3e0-6a8a3250fa0c"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
- ],
- "x-ms-correlation-request-id": [
- "a3b55034-f8ef-4590-b806-e940999c6e1b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T032358Z:a3b55034-f8ef-4590-b806-e940999c6e1b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 07 Dec 2017 03:23:57 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6255/providers/Microsoft.DataLakeAnalytics/accounts/ps4960/operationresults/1?api-version=2016-11-01"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/325f2729-ea33-452f-b0c8-1d27bf7e29731?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zMjVmMjcyOS1lYTMzLTQ1MmYtYjBjOC0xZDI3YmY3ZTI5NzMxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"pipelineId\": \"30aca7ed-d537-494f-8dc6-746cbd85678e\",\r\n \"pipelineName\": \"ps368\",\r\n \"pipelineUri\": \"https://begoldsm.contoso.com/jobs\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 0,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0029818029166666666,\r\n \"lastSubmitTime\": \"2018-06-07T21:52:21.2754444+08:00\",\r\n \"runs\": [\r\n {\r\n \"item1\": \"5d596f8a-d91f-45c3-af09-a2184aa84437\",\r\n \"item2\": \"2018-06-07T21:52:21.2754444+08:00\"\r\n }\r\n ],\r\n \"recurrences\": [\r\n \"c358ddca-3a7a-4406-b4d6-cba941087438\"\r\n ]\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "22"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
- "Pragma": [
- "no-cache"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "9cc3616a-d1b3-4209-852c-db3071e63ecf"
+ "09484878-9bda-4dcb-b7d8-cb8d5e566bfd"
],
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
- ],
- "x-ms-correlation-request-id": [
- "3fe500f8-754d-4f02-ba49-23837268c617"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20171207T032409Z:3fe500f8-754d-4f02-ba49-23837268c617"
- ],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Connection": [
- "close"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:24:08 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Thu, 07 Jun 2018 13:52:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeAnalytics/accounts/ps9314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzOTMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d35bca4-59a3-4168-bf68-a7573d0c7bce"
+ "2e19c15f-b10b-453d-9afd-9dcbdc1859f0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -2040,38 +1935,29 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7542422f-d141-479d-884d-09f2933be6fa1?api-version=2016-11-01&expanded=true"
- ],
"x-ms-request-id": [
- "ebeb8152-11d0-44ec-a437-8921cce3605d"
+ "edf21ee6-0160-412d-aa16-f1f834e33516"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "f747086b-cd73-4822-a7ef-b4ca5245252e"
+ "7ced5082-1226-45a4-8b1f-3eb09933c75b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032412Z:f747086b-cd73-4822-a7ef-b4ca5245252e"
+ "AUSTRALIAEAST:20180607T135306Z:7ced5082-1226-45a4-8b1f-3eb09933c75b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:24:12 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6255/providers/Microsoft.DataLakeStore/accounts/ps5548/operationresults/1?api-version=2016-11-01"
+ "Thu, 07 Jun 2018 13:53:06 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2083,28 +1969,31 @@
"ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7542422f-d141-479d-884d-09f2933be6fa1?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc1NDI0MjJmLWQxNDEtNDc5ZC04ODRkLTA5ZjI5MzNiZTZmYTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps4641/providers/Microsoft.DataLakeStore/accounts/ps9758?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNDY0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM5NzU4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2fc9c55-7ce1-46f6-a883-58fc36050279"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -2113,31 +2002,28 @@
"no-cache"
],
"x-ms-request-id": [
- "73cee709-8335-4fa7-ae28-b7b951c4ad66"
+ "589f4689-a814-4e21-aa3f-d607cbb4d11d"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "a3f96471-0721-4924-85f1-251f82baf38c"
+ "ad364e52-14df-4bf4-95b0-af98753c9285"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032423Z:a3f96471-0721-4924-85f1-251f82baf38c"
+ "AUSTRALIAEAST:20180607T135313Z:ad364e52-14df-4bf4-95b0-af98753c9285"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:24:23 GMT"
+ "Thu, 07 Jun 2018 13:53:13 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2152,13 +2038,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6255?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjI1NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps4641?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNDY0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "480ab60b-f8c1-4f93-9055-6f9f5bb106ff"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2175,44 +2070,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-request-id": [
- "93c9a11a-768b-496b-aadf-3cff8d7cabfc"
+ "e6f1800c-f181-40b8-93b8-47ff5c51a4e4"
],
"x-ms-correlation-request-id": [
- "93c9a11a-768b-496b-aadf-3cff8d7cabfc"
+ "e6f1800c-f181-40b8-93b8-47ff5c51a4e4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032427Z:93c9a11a-768b-496b-aadf-3cff8d7cabfc"
+ "AUSTRALIAEAST:20180607T135317Z:e6f1800c-f181-40b8-93b8-47ff5c51a4e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:24:27 GMT"
+ "Thu, 07 Jun 2018 13:53:17 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5UVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk5ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2230,43 +2128,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14991"
],
"x-ms-request-id": [
- "5355a6e4-c0a7-440a-8799-5b9593ea95e9"
+ "a6a9313f-67a3-4210-aef0-ea319ec5d2b7"
],
"x-ms-correlation-request-id": [
- "5355a6e4-c0a7-440a-8799-5b9593ea95e9"
+ "a6a9313f-67a3-4210-aef0-ea319ec5d2b7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032427Z:5355a6e4-c0a7-440a-8799-5b9593ea95e9"
+ "AUSTRALIAEAST:20180607T135333Z:a6a9313f-67a3-4210-aef0-ea319ec5d2b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:24:27 GMT"
+ "Thu, 07 Jun 2018 13:53:33 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5UVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk5ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2284,43 +2185,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14990"
],
"x-ms-request-id": [
- "ef6f7cbb-da56-4260-82b2-ec1dbfe088a0"
+ "4a2da6c2-b83c-4468-a6a2-0d930c9f98cf"
],
"x-ms-correlation-request-id": [
- "ef6f7cbb-da56-4260-82b2-ec1dbfe088a0"
+ "4a2da6c2-b83c-4468-a6a2-0d930c9f98cf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032443Z:ef6f7cbb-da56-4260-82b2-ec1dbfe088a0"
+ "AUSTRALIAEAST:20180607T135348Z:4a2da6c2-b83c-4468-a6a2-0d930c9f98cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:24:42 GMT"
+ "Thu, 07 Jun 2018 13:53:48 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5UVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk5ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2334,47 +2238,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14989"
],
"x-ms-request-id": [
- "ab71f12d-9f59-4530-8723-0f06c0294713"
+ "df2851d6-68cc-4d51-86d4-05a5ef429142"
],
"x-ms-correlation-request-id": [
- "ab71f12d-9f59-4530-8723-0f06c0294713"
+ "df2851d6-68cc-4d51-86d4-05a5ef429142"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032458Z:ab71f12d-9f59-4530-8723-0f06c0294713"
+ "AUSTRALIAEAST:20180607T135404Z:df2851d6-68cc-4d51-86d4-05a5ef429142"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:24:57 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 13:54:04 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5UVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NDEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk5ERXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -2389,25 +2290,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14988"
],
"x-ms-request-id": [
- "03553a09-579f-4d11-b0ca-65da606a4683"
+ "9146ea4d-fe71-4e85-ab8c-7beb6f75fcb9"
],
"x-ms-correlation-request-id": [
- "03553a09-579f-4d11-b0ca-65da606a4683"
+ "9146ea4d-fe71-4e85-ab8c-7beb6f75fcb9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T032513Z:03553a09-579f-4d11-b0ca-65da606a4683"
+ "AUSTRALIAEAST:20180607T135404Z:9146ea4d-fe71-4e85-ab8c-7beb6f75fcb9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:25:12 GMT"
+ "Thu, 07 Jun 2018 13:54:04 GMT"
]
},
"StatusCode": 200
@@ -2415,25 +2319,25 @@
],
"Names": {
"": [
- "ps6255",
- "ps4960",
- "ps5548"
+ "ps4641",
+ "ps9314",
+ "ps9758"
],
"relationTest01": [
- "6ba6077c-38de-4242-9e6d-a112864a22df"
+ "f235f6f3-42a0-4013-a5e4-db4e52c845f8"
],
"relationTest02": [
- "7a853626-c12d-412f-b09a-2320a8e4469a"
+ "c358ddca-3a7a-4406-b4d6-cba941087438"
],
"relationTest03": [
- "19aec406-6e5a-4f50-b06e-8eb4e31e0733"
+ "30aca7ed-d537-494f-8dc6-746cbd85678e"
],
"relationTest04": [
- "81f498ea-72fc-4344-b5ef-9852e6fce2ab"
+ "5d596f8a-d91f-45c3-af09-a2184aa84437"
],
"Test-DataLakeAnalyticsJobRelationships": [
- "ps8264",
- "ps5187"
+ "ps368",
+ "ps5658"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestNegativeAdlaAccount.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestNegativeAdlaAccount.json
index ce1c25303157..e3d0f7830a4f 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestNegativeAdlaAccount.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestNegativeAdlaAccount.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,22 +28,25 @@
"1198"
],
"x-ms-request-id": [
- "9c0023a1-ad9e-4fc0-aaed-c7118d4d1dbe"
+ "01e51e6b-b10b-439a-a8bf-b48f43d3dede"
],
"x-ms-correlation-request-id": [
- "9c0023a1-ad9e-4fc0-aaed-c7118d4d1dbe"
+ "01e51e6b-b10b-439a-a8bf-b48f43d3dede"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035655Z:9c0023a1-ad9e-4fc0-aaed-c7118d4d1dbe"
+ "AUSTRALIAEAST:20180607T143117Z:01e51e6b-b10b-439a-a8bf-b48f43d3dede"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:56:54 GMT"
+ "Thu, 07 Jun 2018 14:31:17 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14998"
],
"x-ms-request-id": [
- "a1a65230-5b1c-41e5-a37c-69ef7321b071"
+ "7c019b9a-7460-45d6-befb-4c4bfcddd109"
],
"x-ms-correlation-request-id": [
- "a1a65230-5b1c-41e5-a37c-69ef7321b071"
+ "7c019b9a-7460-45d6-befb-4c4bfcddd109"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035655Z:a1a65230-5b1c-41e5-a37c-69ef7321b071"
+ "AUSTRALIAEAST:20180607T143118Z:7c019b9a-7460-45d6-befb-4c4bfcddd109"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:56:54 GMT"
+ "Thu, 07 Jun 2018 14:31:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6795?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjc5NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9690?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTY5MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "c2b14f40-411c-4151-9bc7-3b7ca029e61b"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795\",\r\n \"name\": \"ps6795\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690\",\r\n \"name\": \"ps9690\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,49 +142,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-request-id": [
- "fa8d2fff-b815-4c4e-9560-162064702825"
+ "792b9f7c-b62f-4298-925d-f36a57b1d45a"
],
"x-ms-correlation-request-id": [
- "fa8d2fff-b815-4c4e-9560-162064702825"
+ "792b9f7c-b62f-4298-925d-f36a57b1d45a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035658Z:fa8d2fff-b815-4c4e-9560-162064702825"
+ "AUSTRALIAEAST:20180607T143127Z:792b9f7c-b62f-4298-925d-f36a57b1d45a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:56:58 GMT"
+ "Thu, 07 Jun 2018 14:31:27 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyODY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3343a991-1ed2-45f9-84eb-73503c3133ab"
+ "e895c8ba-d61f-4efd-a08e-bf82dc557822"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps2864' under resource group 'ps6795' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7447' under resource group 'ps9690' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -187,43 +205,46 @@
"gateway"
],
"x-ms-request-id": [
- "b6e3016a-8b8d-4ea2-814e-283dacb9ac89"
+ "e5eb92d9-7902-4400-afdf-25efc020a631"
],
"x-ms-correlation-request-id": [
- "b6e3016a-8b8d-4ea2-814e-283dacb9ac89"
+ "e5eb92d9-7902-4400-afdf-25efc020a631"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035659Z:b6e3016a-8b8d-4ea2-814e-283dacb9ac89"
+ "AUSTRALIAEAST:20180607T143129Z:e5eb92d9-7902-4400-afdf-25efc020a631"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:56:58 GMT"
+ "Thu, 07 Jun 2018 14:31:29 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyODY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2864.azuredatalakestore.net\",\r\n \"accountId\": \"cc3be185-2e0e-43cf-928b-490bd72794fd\",\r\n \"creationTime\": \"2017-12-07T03:57:05.7327856Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:57:05.7327856Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c73011f6-caad-4070-9ed5-03f2434b778b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864\",\r\n \"name\": \"ps2864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7447.azuredatalakestore.net\",\r\n \"accountId\": \"a00e90b4-33e8-4e41-975e-49b39fc07628\",\r\n \"creationTime\": \"2018-06-07T14:31:37.6915067Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:31:37.6915067Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3ff408d7-8e1f-4633-a787-d8f4625d7c50\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447\",\r\n \"name\": \"ps7447\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -235,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "ffa5b1ba-168c-4428-88f2-a65ede191da5"
+ "0c393873-9af5-4f8c-a0df-1e0aae65ba9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14966"
],
"x-ms-correlation-request-id": [
- "d6ec0e5d-7d9e-4463-8365-5637e80bde58"
+ "8a293f6c-1696-4e97-9dcc-26411560a442"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035736Z:d6ec0e5d-7d9e-4463-8365-5637e80bde58"
+ "AUSTRALIAEAST:20180607T143212Z:8a293f6c-1696-4e97-9dcc-26411560a442"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:35 GMT"
+ "Thu, 07 Jun 2018 14:32:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -274,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyODY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8e4cb42-d188-4a6c-a934-93ec69e3bbd9"
+ "dc794431-6ead-47e0-a570-1d4b80109d77"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2864.azuredatalakestore.net\",\r\n \"accountId\": \"cc3be185-2e0e-43cf-928b-490bd72794fd\",\r\n \"creationTime\": \"2017-12-07T03:57:05.7327856Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:57:05.7327856Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c73011f6-caad-4070-9ed5-03f2434b778b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864\",\r\n \"name\": \"ps2864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7447.azuredatalakestore.net\",\r\n \"accountId\": \"a00e90b4-33e8-4e41-975e-49b39fc07628\",\r\n \"creationTime\": \"2018-06-07T14:31:37.6915067Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:31:37.6915067Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3ff408d7-8e1f-4633-a787-d8f4625d7c50\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447\",\r\n \"name\": \"ps7447\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -307,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c160b4aa-cb38-488f-ae5c-8d8705109f55"
+ "e0d90b57-16c4-414d-90a0-fa2a52e6114c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14965"
],
"x-ms-correlation-request-id": [
- "c691ced3-bdb8-4208-b343-906f6652f911"
+ "979c66cf-ca0e-4099-9150-232ca7cfcecf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035820Z:c691ced3-bdb8-4208-b343-906f6652f911"
+ "AUSTRALIAEAST:20180607T143308Z:979c66cf-ca0e-4099-9150-232ca7cfcecf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:20 GMT"
+ "Thu, 07 Jun 2018 14:33:07 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -346,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyODY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "8f26de34-dde1-4fdc-ac33-0fcae59672b1"
+ "19592eec-9967-477c-8e22-39e53401418f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"cc3be185-2e0e-43cf-928b-490bd72794fd\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864\",\r\n \"name\": \"ps2864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a00e90b4-33e8-4e41-975e-49b39fc07628\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447\",\r\n \"name\": \"ps7447\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -388,37 +403,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cc3be185-2e0e-43cf-928b-490bd72794fd0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/a00e90b4-33e8-4e41-975e-49b39fc076280?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "f9c14975-60d9-4922-bd5d-18af326e3fe7"
+ "0f6d834f-d2e2-4130-8870-a4e7b963ddb7"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "f3a92e54-0c5b-46fc-8a9e-d758265327fe"
+ "f5704ea9-b9a9-4553-9bae-489a8385beec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035703Z:f3a92e54-0c5b-46fc-8a9e-d758265327fe"
+ "AUSTRALIAEAST:20180607T143137Z:f5704ea9-b9a9-4553-9bae-489a8385beec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:03 GMT"
+ "Thu, 07 Jun 2018 14:31:36 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -433,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cc3be185-2e0e-43cf-928b-490bd72794fd0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NjM2JlMTg1LTJlMGUtNDNjZi05MjhiLTQ5MGJkNzI3OTRmZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/a00e90b4-33e8-4e41-975e-49b39fc076280?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2EwMGU5MGI0LTMzZTgtNGU0MS05NzVlLTQ5YjM5ZmMwNzYyODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -460,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "66f21e46-b0e5-4c90-9a48-991eef431de8"
+ "8e72aa97-e683-4ad2-b37c-f04d517a164b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14969"
],
"x-ms-correlation-request-id": [
- "facf1c07-ef3d-4091-b1f2-6be76c124dda"
+ "b25a706f-c7ca-4201-bfda-3f4ffaf270cd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035714Z:facf1c07-ef3d-4091-b1f2-6be76c124dda"
+ "AUSTRALIAEAST:20180607T143148Z:b25a706f-c7ca-4201-bfda-3f4ffaf270cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:14 GMT"
+ "Thu, 07 Jun 2018 14:31:47 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -499,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cc3be185-2e0e-43cf-928b-490bd72794fd0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NjM2JlMTg1LTJlMGUtNDNjZi05MjhiLTQ5MGJkNzI3OTRmZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/a00e90b4-33e8-4e41-975e-49b39fc076280?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2EwMGU5MGI0LTMzZTgtNGU0MS05NzVlLTQ5YjM5ZmMwNzYyODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -526,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "903a6ffd-f528-4760-ac60-0b39548f4e6e"
+ "465fb5f4-5eb6-47a6-939c-d6ce5989d635"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14968"
],
"x-ms-correlation-request-id": [
- "d154c549-a15e-4577-858f-3e722ae18f47"
+ "3d5c7905-e7b9-4e3e-9a98-06f6d81de314"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035725Z:d154c549-a15e-4577-858f-3e722ae18f47"
+ "AUSTRALIAEAST:20180607T143159Z:3d5c7905-e7b9-4e3e-9a98-06f6d81de314"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:24 GMT"
+ "Thu, 07 Jun 2018 14:31:59 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -565,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/cc3be185-2e0e-43cf-928b-490bd72794fd0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NjM2JlMTg1LTJlMGUtNDNjZi05MjhiLTQ5MGJkNzI3OTRmZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/a00e90b4-33e8-4e41-975e-49b39fc076280?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2EwMGU5MGI0LTMzZTgtNGU0MS05NzVlLTQ5YjM5ZmMwNzYyODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -592,31 +598,28 @@
"no-cache"
],
"x-ms-request-id": [
- "9e6bf78c-ee17-40f4-bb99-4d0085fddac6"
+ "53645678-695e-4a84-9059-fb42ca2c966d"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14967"
],
"x-ms-correlation-request-id": [
- "1cfc5a60-8b35-444f-a80d-f6c02871318e"
+ "9f77c532-7fcf-4e89-afee-28a85b8cac41"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035735Z:1cfc5a60-8b35-444f-a80d-f6c02871318e"
+ "AUSTRALIAEAST:20180607T143211Z:9f77c532-7fcf-4e89-afee-28a85b8cac41"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:35 GMT"
+ "Thu, 07 Jun 2018 14:32:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -631,25 +634,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "217990ab-a333-473d-a864-f75bae88e196"
+ "b1e44aa9-90f5-43a0-8270-38a7094078fe"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6854' under resource group 'ps6795' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5949' under resource group 'ps9690' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -667,46 +670,49 @@
"gateway"
],
"x-ms-request-id": [
- "de1c15f0-3364-44ea-a5f7-73546a2b6213"
+ "65fda796-4ae7-4af2-a717-d919d2502f8e"
],
"x-ms-correlation-request-id": [
- "de1c15f0-3364-44ea-a5f7-73546a2b6213"
+ "65fda796-4ae7-4af2-a717-d919d2502f8e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035737Z:de1c15f0-3364-44ea-a5f7-73546a2b6213"
+ "AUSTRALIAEAST:20180607T143214Z:65fda796-4ae7-4af2-a717-d919d2502f8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:36 GMT"
+ "Thu, 07 Jun 2018 14:32:14 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "543dfee8-613f-4466-ae6f-5fc7f7d80c77"
+ "b8abeeed-9254-41c9-a534-141b0ab365b6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6854' under resource group 'ps6795' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5949' under resource group 'ps9690' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -724,43 +730,46 @@
"gateway"
],
"x-ms-request-id": [
- "3d2b3ba0-e8ec-40bd-b173-4fd7f499d43a"
+ "cba6b529-eb0c-4e8f-81af-29277e422359"
],
"x-ms-correlation-request-id": [
- "3d2b3ba0-e8ec-40bd-b173-4fd7f499d43a"
+ "cba6b529-eb0c-4e8f-81af-29277e422359"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035737Z:3d2b3ba0-e8ec-40bd-b173-4fd7f499d43a"
+ "AUSTRALIAEAST:20180607T143214Z:cba6b529-eb0c-4e8f-81af-29277e422359"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:36 GMT"
+ "Thu, 07 Jun 2018 14:32:14 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2864\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2864\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6854.azuredatalakeanalytics.net\",\r\n \"accountId\": \"aea959a8-e68c-474a-b74b-9240e14f5b91\",\r\n \"creationTime\": \"2017-12-07T03:57:41.7061899Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:57:41.7061899Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854\",\r\n \"name\": \"ps6854\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7447\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7447\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5949.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c35badb2-5620-409d-82c1-c167ff460ad8\",\r\n \"creationTime\": \"2018-06-07T14:32:19.9963595Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:32:19.9963595Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949\",\r\n \"name\": \"ps5949\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -772,31 +781,28 @@
"no-cache"
],
"x-ms-request-id": [
- "dfd35c64-c88e-4f6f-8e8b-11ade8dee510"
+ "9f7b6369-77c4-456a-8382-ddfaa779ac73"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14986"
],
"x-ms-correlation-request-id": [
- "231fd1f6-8969-4389-8f27-78d3c1f537c6"
+ "323b0ec8-12c5-4eaa-8f76-451fe7a3961d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035812Z:231fd1f6-8969-4389-8f27-78d3c1f537c6"
+ "AUSTRALIAEAST:20180607T143256Z:323b0ec8-12c5-4eaa-8f76-451fe7a3961d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:11 GMT"
+ "Thu, 07 Jun 2018 14:32:55 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -811,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74e96083-9640-4f40-86a0-853ddcd2664d"
+ "8d90cefb-ee0f-4931-9508-6faecd3c8575"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2864\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2864\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6854.azuredatalakeanalytics.net\",\r\n \"accountId\": \"aea959a8-e68c-474a-b74b-9240e14f5b91\",\r\n \"creationTime\": \"2017-12-07T03:57:41.7061899Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:57:41.7061899Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854\",\r\n \"name\": \"ps6854\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7447\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7447\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5949.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c35badb2-5620-409d-82c1-c167ff460ad8\",\r\n \"creationTime\": \"2018-06-07T14:32:19.9963595Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:32:19.9963595Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949\",\r\n \"name\": \"ps5949\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -844,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "18a5fd65-7c80-4918-8e74-3f762309da54"
+ "d8de2bbc-cb71-460d-82b4-34d0d9edaf1b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14985"
],
"x-ms-correlation-request-id": [
- "201d777a-b170-49d0-ba95-b0ee87b8cd6a"
+ "a397550f-357a-4db7-abff-9580042d61a6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035812Z:201d777a-b170-49d0-ba95-b0ee87b8cd6a"
+ "AUSTRALIAEAST:20180607T143257Z:a397550f-357a-4db7-abff-9580042d61a6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:12 GMT"
+ "Thu, 07 Jun 2018 14:32:56 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -883,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed70a603-9013-4024-9ae7-1ca61f6b67c8"
+ "ea97179e-ae72-45d2-9c6d-4ca1403fd769"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2864\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2864\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6854.azuredatalakeanalytics.net\",\r\n \"accountId\": \"aea959a8-e68c-474a-b74b-9240e14f5b91\",\r\n \"creationTime\": \"2017-12-07T03:57:41.7061899Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:57:41.7061899Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854\",\r\n \"name\": \"ps6854\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7447\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7447\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5949.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c35badb2-5620-409d-82c1-c167ff460ad8\",\r\n \"creationTime\": \"2018-06-07T14:32:19.9963595Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:32:19.9963595Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949\",\r\n \"name\": \"ps5949\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -916,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "e595af72-e72a-4db4-ba3e-1a18fa9cdbdc"
+ "8e279e53-f5f3-4cb2-b0f0-1cce0ecd1a0a"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14984"
],
"x-ms-correlation-request-id": [
- "6f5e0e18-5b18-44ce-8c7c-703eb238bcfd"
+ "bf13357f-dfab-4e5c-9ffd-51fb25b22031"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035813Z:6f5e0e18-5b18-44ce-8c7c-703eb238bcfd"
+ "AUSTRALIAEAST:20180607T143258Z:bf13357f-dfab-4e5c-9ffd-51fb25b22031"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:12 GMT"
+ "Thu, 07 Jun 2018 14:32:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -955,28 +955,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4cda0904-45ba-4fd1-b1fc-d7e4aa05f9b8"
+ "72c066e4-a0be-47e1-844b-06377acffe8c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps2864\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2864\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps6854.azuredatalakeanalytics.net\",\r\n \"accountId\": \"aea959a8-e68c-474a-b74b-9240e14f5b91\",\r\n \"creationTime\": \"2017-12-07T03:57:41.7061899Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:57:41.7061899Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854\",\r\n \"name\": \"ps6854\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7447\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7447\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps5949.azuredatalakeanalytics.net\",\r\n \"accountId\": \"c35badb2-5620-409d-82c1-c167ff460ad8\",\r\n \"creationTime\": \"2018-06-07T14:32:19.9963595Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:32:19.9963595Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949\",\r\n \"name\": \"ps5949\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -988,31 +988,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a644a7ae-4f6f-4341-a9a7-3fced21593b3"
+ "642ec116-e0dc-4f1d-aba5-3a1b65d2ca2f"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14981"
],
"x-ms-correlation-request-id": [
- "ee3b08b3-ca3c-4983-9cff-ac746503ed62"
+ "83b62591-7bc2-4caa-9c83-e7ed31bf10f0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035815Z:ee3b08b3-ca3c-4983-9cff-ac746503ed62"
+ "AUSTRALIAEAST:20180607T143300Z:83b62591-7bc2-4caa-9c83-e7ed31bf10f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:14 GMT"
+ "Thu, 07 Jun 2018 14:33:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1027,25 +1024,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c709fb24-a714-40f9-b316-78ca3e9bfc4b"
+ "c3b2127b-f27c-4928-a511-abeabb0804ed"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6854' under resource group 'ps6795' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5949' under resource group 'ps9690' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1063,46 +1060,49 @@
"gateway"
],
"x-ms-request-id": [
- "57e48f48-caa3-4357-b13a-28e034c4dda8"
+ "feffea21-0ec4-4a83-8e1d-2fd0d9fcd40e"
],
"x-ms-correlation-request-id": [
- "57e48f48-caa3-4357-b13a-28e034c4dda8"
+ "feffea21-0ec4-4a83-8e1d-2fd0d9fcd40e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035819Z:57e48f48-caa3-4357-b13a-28e034c4dda8"
+ "AUSTRALIAEAST:20180607T143305Z:feffea21-0ec4-4a83-8e1d-2fd0d9fcd40e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:19 GMT"
+ "Thu, 07 Jun 2018 14:33:05 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1c769ec-0725-467e-a55a-4f2e35c4d216"
+ "de88dfed-0554-49d4-9928-c19e5263520c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6854' under resource group 'ps6795' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5949' under resource group 'ps9690' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1120,46 +1120,49 @@
"gateway"
],
"x-ms-request-id": [
- "fabe22f7-fde3-472a-bfc4-b4d8ffada01c"
+ "cfe64cef-a81f-464d-8e56-10fa66f60fb7"
],
"x-ms-correlation-request-id": [
- "fabe22f7-fde3-472a-bfc4-b4d8ffada01c"
+ "cfe64cef-a81f-464d-8e56-10fa66f60fb7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035819Z:fabe22f7-fde3-472a-bfc4-b4d8ffada01c"
+ "AUSTRALIAEAST:20180607T143305Z:cfe64cef-a81f-464d-8e56-10fa66f60fb7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:19 GMT"
+ "Thu, 07 Jun 2018 14:33:05 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d7d108a-d0f3-4fb9-8ca0-a8da01bf47f5"
+ "a0075115-829c-4cbc-a0d5-ef56b74e7b27"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps6854' under resource group 'ps6795' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps5949' under resource group 'ps9690' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1177,55 +1180,58 @@
"gateway"
],
"x-ms-request-id": [
- "7cf8f7e2-03c7-4bfc-8d51-d8d31604d838"
+ "03388e60-1f8b-4457-acf1-309ef842ead8"
],
"x-ms-correlation-request-id": [
- "7cf8f7e2-03c7-4bfc-8d51-d8d31604d838"
+ "03388e60-1f8b-4457-acf1-309ef842ead8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035820Z:7cf8f7e2-03c7-4bfc-8d51-d8d31604d838"
+ "AUSTRALIAEAST:20180607T143306Z:03388e60-1f8b-4457-acf1-309ef842ead8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:19 GMT"
+ "Thu, 07 Jun 2018 14:33:05 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps2864\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps2864\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7447\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7447\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "c24b7ce5-db88-478d-ab4e-eab6e9494666"
+ "197dfce2-a55a-4571-a317-7b48c8d4cc20"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps2864\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps2864\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"aea959a8-e68c-474a-b74b-9240e14f5b91\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854\",\r\n \"name\": \"ps6854\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7447\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7447\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c35badb2-5620-409d-82c1-c167ff460ad8\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949\",\r\n \"name\": \"ps5949\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "487"
],
"Content-Type": [
"application/json"
@@ -1240,37 +1246,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/aea959a8-e68c-474a-b74b-9240e14f5b910?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/c35badb2-5620-409d-82c1-c167ff460ad80?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "49a3e6fe-5b87-45fd-b480-859fa19ad293"
+ "a7cde24d-c68b-41e7-8223-faf6a942d70c"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1198"
],
"x-ms-correlation-request-id": [
- "af347dfe-af5d-4587-b9a7-e1398b9e4e38"
+ "8e6e6576-29f2-42fc-a54f-2198d5349b7a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035739Z:af347dfe-af5d-4587-b9a7-e1398b9e4e38"
+ "AUSTRALIAEAST:20180607T143219Z:8e6e6576-29f2-42fc-a54f-2198d5349b7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:38 GMT"
+ "Thu, 07 Jun 2018 14:32:18 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1285,16 +1288,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/aea959a8-e68c-474a-b74b-9240e14f5b910?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9hZWE5NTlhOC1lNjhjLTQ3NGEtYjc0Yi05MjQwZTE0ZjViOTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/c35badb2-5620-409d-82c1-c167ff460ad80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9jMzViYWRiMi01NjIwLTQwOWQtODJjMS1jMTY3ZmY0NjBhZDgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1312,31 +1315,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6bb85b4b-64cc-45c7-a4b3-f344c74ff820"
+ "4478329d-3ae2-4757-9073-5ec2de3397d1"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14989"
],
"x-ms-correlation-request-id": [
- "19c47964-8875-445c-a1b4-a5d92b37defd"
+ "bfaad575-08ef-4b65-ba80-ab032e4038ed"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035750Z:19c47964-8875-445c-a1b4-a5d92b37defd"
+ "AUSTRALIAEAST:20180607T143230Z:bfaad575-08ef-4b65-ba80-ab032e4038ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:57:49 GMT"
+ "Thu, 07 Jun 2018 14:32:30 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1351,16 +1351,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/aea959a8-e68c-474a-b74b-9240e14f5b910?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9hZWE5NTlhOC1lNjhjLTQ3NGEtYjc0Yi05MjQwZTE0ZjViOTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/c35badb2-5620-409d-82c1-c167ff460ad80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9jMzViYWRiMi01NjIwLTQwOWQtODJjMS1jMTY3ZmY0NjBhZDgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1378,31 +1378,28 @@
"no-cache"
],
"x-ms-request-id": [
- "dc5d9da9-eae0-4da0-be04-c35abb4aa3ce"
+ "3b4fedaf-84ea-4836-b1e9-af239149f1e3"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14978"
+ "14988"
],
"x-ms-correlation-request-id": [
- "4e5d1d38-9661-4604-a851-22902c28be41"
+ "608432e2-52d8-4f48-893f-54fd4a9b7699"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035801Z:4e5d1d38-9661-4604-a851-22902c28be41"
+ "AUSTRALIAEAST:20180607T143242Z:608432e2-52d8-4f48-893f-54fd4a9b7699"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:00 GMT"
+ "Thu, 07 Jun 2018 14:32:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1417,16 +1414,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/aea959a8-e68c-474a-b74b-9240e14f5b910?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9hZWE5NTlhOC1lNjhjLTQ3NGEtYjc0Yi05MjQwZTE0ZjViOTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/c35badb2-5620-409d-82c1-c167ff460ad80?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9jMzViYWRiMi01NjIwLTQwOWQtODJjMS1jMTY3ZmY0NjBhZDgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1444,31 +1441,28 @@
"no-cache"
],
"x-ms-request-id": [
- "6d7294fe-189e-4329-9eef-66fe97a4ae92"
+ "eee7ede0-9679-4d70-bea8-96d584870744"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14987"
],
"x-ms-correlation-request-id": [
- "6a1afa1c-738d-4a30-96b3-9b8c6b359139"
+ "f7b350c7-85f8-4e6d-9b44-bcf67745e2f8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035811Z:6a1afa1c-738d-4a30-96b3-9b8c6b359139"
+ "AUSTRALIAEAST:20180607T143254Z:f7b350c7-85f8-4e6d-9b44-bcf67745e2f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:10 GMT"
+ "Thu, 07 Jun 2018 14:32:53 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1483,25 +1477,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlQW5hbHl0aWNzYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlQW5hbHl0aWNzYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98c6ed38-728c-4d72-a833-fe5681de4b9f"
+ "1f348a2d-0c0e-4978-982c-e72f0a06ea38"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'ps6795' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'ps9690' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"181"
@@ -1519,46 +1513,49 @@
"gateway"
],
"x-ms-request-id": [
- "5a66a113-5ff5-4ca9-8be0-50c5cdef578d"
+ "0ca5b11b-8ec5-4e6f-b865-c86a634ce23f"
],
"x-ms-correlation-request-id": [
- "5a66a113-5ff5-4ca9-8be0-50c5cdef578d"
+ "0ca5b11b-8ec5-4e6f-b865-c86a634ce23f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035814Z:5a66a113-5ff5-4ca9-8be0-50c5cdef578d"
+ "AUSTRALIAEAST:20180607T143259Z:0ca5b11b-8ec5-4e6f-b865-c86a634ce23f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:13 GMT"
+ "Thu, 07 Jun 2018 14:32:58 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlQW5hbHl0aWNzYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlQW5hbHl0aWNzYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3abab557-eab3-425b-9558-7d7c608ffbdc"
+ "b1398b6e-6b1e-4353-a448-a50514228bc1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'ps6795' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'ps9690' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"181"
@@ -1576,43 +1573,46 @@
"gateway"
],
"x-ms-request-id": [
- "38d466e4-6fde-4f52-bdca-ee7173ac6064"
+ "03050123-8b5b-41dd-9f7a-d24760f0a66c"
],
"x-ms-correlation-request-id": [
- "38d466e4-6fde-4f52-bdca-ee7173ac6064"
+ "03050123-8b5b-41dd-9f7a-d24760f0a66c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035814Z:38d466e4-6fde-4f52-bdca-ee7173ac6064"
+ "AUSTRALIAEAST:20180607T143259Z:03050123-8b5b-41dd-9f7a-d24760f0a66c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:13 GMT"
+ "Thu, 07 Jun 2018 14:32:59 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeAnalytics/accounts/ps6854?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNjg1ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeAnalytics/accounts/ps5949?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNTk0OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a93ba8e1-22b8-4b9c-84a8-a310205ee90e"
+ "3bed80c9-728c-451b-b63e-40624699eba2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -1627,28 +1627,28 @@
"no-cache"
],
"x-ms-request-id": [
- "48f9d728-d1f0-4651-811c-28a9079861d7"
+ "b4807854-6958-45c9-addd-332af0262fea"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "9b230854-4262-40b3-a2f0-5feb63d4b088"
+ "64d42c2a-f7c6-4d7c-be60-f19de0fac832"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035819Z:9b230854-4262-40b3-a2f0-5feb63d4b088"
+ "AUSTRALIAEAST:20180607T143305Z:64d42c2a-f7c6-4d7c-be60-f19de0fac832"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:19 GMT"
+ "Thu, 07 Jun 2018 14:33:04 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1663,19 +1663,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps6795/providers/Microsoft.DataLakeStore/accounts/ps2864?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNjc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHMyODY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7e854779-1397-4190-a462-be95957d66a0"
+ "f60e864f-86de-43b3-be37-80194dea1989"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1692,29 +1692,101 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/a00e90b4-33e8-4e41-975e-49b39fc076281?api-version=2016-11-01&expanded=true"
+ ],
"x-ms-request-id": [
- "06a16898-1a35-4bd5-9d01-a8fadf62d8ca"
+ "af06eb7c-c2e0-4e8e-9d56-4d877b7448a4"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "5e893577-eb6a-48e0-8324-b53e1cc67965"
+ "fb9bd4ae-3d13-4c49-ac9c-3e6de1f55527"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035823Z:5e893577-eb6a-48e0-8324-b53e1cc67965"
+ "AUSTRALIAEAST:20180607T143312Z:fb9bd4ae-3d13-4c49-ac9c-3e6de1f55527"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 14:33:11 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447/operationresults/1?api-version=2016-11-01"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/a00e90b4-33e8-4e41-975e-49b39fc076281?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2EwMGU5MGI0LTMzZTgtNGU0MS05NzVlLTQ5YjM5ZmMwNzYyODE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a29bd485-116c-4715-855f-2c846e144ab4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "96d21ca6-bb44-424f-b8ba-b208d790cecd"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T143323Z:96d21ca6-bb44-424f-b8ba-b208d790cecd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:23 GMT"
+ "Thu, 07 Jun 2018 14:33:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1729,13 +1801,82 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps6795?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNjc5NT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9690/providers/Microsoft.DataLakeStore/accounts/ps7447/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NDQ3L29wZXJhdGlvbnJlc3VsdHMvMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "51fcdd95-c23c-424a-87f2-171a85620e58"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "a35fc25d-4417-4ef7-99d9-89b1bcbeb2bb"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T143325Z:a35fc25d-4417-4ef7-99d9-89b1bcbeb2bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 14:33:24 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps9690?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzOTY5MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ee3d27bd-8bcb-4e4c-9aa4-8931befcaefa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1752,44 +1893,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14995"
],
"x-ms-request-id": [
- "68d6feb6-5c57-45d8-87e9-716bb6533b2a"
+ "4e66ca55-66d7-41c8-9490-dbaf3fcbbf4d"
],
"x-ms-correlation-request-id": [
- "68d6feb6-5c57-45d8-87e9-716bb6533b2a"
+ "4e66ca55-66d7-41c8-9490-dbaf3fcbbf4d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035825Z:68d6feb6-5c57-45d8-87e9-716bb6533b2a"
+ "AUSTRALIAEAST:20180607T143329Z:4e66ca55-66d7-41c8-9490-dbaf3fcbbf4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:25 GMT"
+ "Thu, 07 Jun 2018 14:33:29 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2OTAtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2OTAtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk9UQXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1807,43 +1951,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14973"
],
"x-ms-request-id": [
- "2d3ac861-851f-441f-974c-a9e1c6282b6d"
+ "59db32de-bc9b-4c2b-93ed-9ad88731c317"
],
"x-ms-correlation-request-id": [
- "2d3ac861-851f-441f-974c-a9e1c6282b6d"
+ "59db32de-bc9b-4c2b-93ed-9ad88731c317"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035826Z:2d3ac861-851f-441f-974c-a9e1c6282b6d"
+ "AUSTRALIAEAST:20180607T143345Z:59db32de-bc9b-4c2b-93ed-9ad88731c317"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:25 GMT"
+ "Thu, 07 Jun 2018 14:33:44 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2OTAtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2OTAtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk9UQXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1861,43 +2008,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14972"
],
"x-ms-request-id": [
- "e7a99098-002e-412a-9582-ba88467b73dd"
+ "f70ec2fd-a12e-4cc2-b7b1-b2d82164ea75"
],
"x-ms-correlation-request-id": [
- "e7a99098-002e-412a-9582-ba88467b73dd"
+ "f70ec2fd-a12e-4cc2-b7b1-b2d82164ea75"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035841Z:e7a99098-002e-412a-9582-ba88467b73dd"
+ "AUSTRALIAEAST:20180607T143400Z:f70ec2fd-a12e-4cc2-b7b1-b2d82164ea75"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:41 GMT"
+ "Thu, 07 Jun 2018 14:34:00 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2OTAtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2OTAtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk9UQXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1911,47 +2061,44 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14971"
],
"x-ms-request-id": [
- "9d1fff06-47d0-4b23-ba36-0225b2911519"
+ "9b28877b-19d3-47d5-8163-d9bdb539249e"
],
"x-ms-correlation-request-id": [
- "9d1fff06-47d0-4b23-ba36-0225b2911519"
+ "9b28877b-19d3-47d5-8163-d9bdb539249e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035856Z:9d1fff06-47d0-4b23-ba36-0225b2911519"
+ "AUSTRALIAEAST:20180607T143416Z:9b28877b-19d3-47d5-8163-d9bdb539249e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:58:56 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "Thu, 07 Jun 2018 14:34:15 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3OTUtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM09UVXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2OTAtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk9UQXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1966,25 +2113,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14970"
],
"x-ms-request-id": [
- "4a0152ae-4e4a-4f47-907a-c0749c7545cb"
+ "424c88df-1f71-40f2-94c7-7ea68f28c1fd"
],
"x-ms-correlation-request-id": [
- "4a0152ae-4e4a-4f47-907a-c0749c7545cb"
+ "424c88df-1f71-40f2-94c7-7ea68f28c1fd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035912Z:4a0152ae-4e4a-4f47-907a-c0749c7545cb"
+ "AUSTRALIAEAST:20180607T143416Z:424c88df-1f71-40f2-94c7-7ea68f28c1fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:59:11 GMT"
+ "Thu, 07 Jun 2018 14:34:15 GMT"
]
},
"StatusCode": 200
@@ -1992,9 +2142,9 @@
],
"Names": {
"": [
- "ps6795",
- "ps6854",
- "ps2864"
+ "ps9690",
+ "ps5949",
+ "ps7447"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestNegativeAdlaJob.json b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestNegativeAdlaJob.json
index 2f64f37d9f60..52df8c942869 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestNegativeAdlaJob.json
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests.AdlaTests/TestNegativeAdlaJob.json
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,25 +25,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "46e331bb-b2dc-49f7-9a7a-177c34e23f35"
+ "39f42691-7f8e-4f96-9eac-0792f95e3f1f"
],
"x-ms-correlation-request-id": [
- "46e331bb-b2dc-49f7-9a7a-177c34e23f35"
+ "39f42691-7f8e-4f96-9eac-0792f95e3f1f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035353Z:46e331bb-b2dc-49f7-9a7a-177c34e23f35"
+ "AUSTRALIAEAST:20180607T142713Z:39f42691-7f8e-4f96-9eac-0792f95e3f1f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:53:53 GMT"
+ "Thu, 07 Jun 2018 14:27:13 GMT"
]
},
"StatusCode": 200
@@ -58,10 +61,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1557"
+ "1627"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,46 +76,58 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14998"
],
"x-ms-request-id": [
- "05b985cc-ba24-473b-a483-f90deaf560e2"
+ "b272b9cf-a8b1-4af9-86a4-9827ce61e803"
],
"x-ms-correlation-request-id": [
- "05b985cc-ba24-473b-a483-f90deaf560e2"
+ "b272b9cf-a8b1-4af9-86a4-9827ce61e803"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035353Z:05b985cc-ba24-473b-a483-f90deaf560e2"
+ "AUSTRALIAEAST:20180607T142714Z:b272b9cf-a8b1-4af9-86a4-9827ce61e803"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:53:53 GMT"
+ "Thu, 07 Jun 2018 14:27:14 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2234?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMjIzND9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5742?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTc0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "31"
+ "29"
+ ],
+ "x-ms-client-request-id": [
+ "29602a3f-7e56-4920-811f-1dffe4e36e9e"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234\",\r\n \"name\": \"ps2234\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742\",\r\n \"name\": \"ps5742\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"166"
@@ -127,49 +142,52 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1196"
],
"x-ms-request-id": [
- "9759d054-df57-4214-9653-af2aaa595688"
+ "faa71faa-bad6-413c-8589-dd914b2796a4"
],
"x-ms-correlation-request-id": [
- "9759d054-df57-4214-9653-af2aaa595688"
+ "faa71faa-bad6-413c-8589-dd914b2796a4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035359Z:9759d054-df57-4214-9653-af2aaa595688"
+ "AUSTRALIAEAST:20180607T142724Z:faa71faa-bad6-413c-8589-dd914b2796a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:53:58 GMT"
+ "Thu, 07 Jun 2018 14:27:24 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3Nzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76f53b2f-3dc9-495d-9cc3-ef9584acb2ca"
+ "4f867c2b-2b73-4251-ba03-f35584296028"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7715' under resource group 'ps2234' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/ps7799' under resource group 'ps5742' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"149"
@@ -187,43 +205,46 @@
"gateway"
],
"x-ms-request-id": [
- "267dc040-bd4c-4275-a3c0-00b133ec5b5c"
+ "18843bbb-805c-4e03-91d0-1d5139a974fc"
],
"x-ms-correlation-request-id": [
- "267dc040-bd4c-4275-a3c0-00b133ec5b5c"
+ "18843bbb-805c-4e03-91d0-1d5139a974fc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035400Z:267dc040-bd4c-4275-a3c0-00b133ec5b5c"
+ "AUSTRALIAEAST:20180607T142726Z:18843bbb-805c-4e03-91d0-1d5139a974fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:53:59 GMT"
+ "Thu, 07 Jun 2018 14:27:25 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3Nzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7715.azuredatalakestore.net\",\r\n \"accountId\": \"8e55b47a-c8f3-41e7-9e53-d6c970496b7d\",\r\n \"creationTime\": \"2017-12-07T03:54:07.6058834Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:54:07.6058834Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3b087d09-d31b-4b9f-b35d-9dad191c1231\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715\",\r\n \"name\": \"ps7715\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7799.azuredatalakestore.net\",\r\n \"accountId\": \"0c2ccfa1-08bd-4aec-a313-d62106b00ee3\",\r\n \"creationTime\": \"2018-06-07T14:27:35.5983178Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:27:35.5983178Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"5cebe0c6-3d81-4e8f-86f6-9d70a9d177ea\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799\",\r\n \"name\": \"ps7799\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -235,31 +256,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b58cd806-e4b1-4781-b806-6dedbbe348b0"
+ "6cb783db-cfbb-4c70-a2ca-55c1f6472f54"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14995"
],
"x-ms-correlation-request-id": [
- "cf91b6a0-8e21-44dd-831a-04e6d0967d6c"
+ "7dcaaf0d-fd2d-4f2d-b846-2905a6fae708"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035438Z:cf91b6a0-8e21-44dd-831a-04e6d0967d6c"
+ "AUSTRALIAEAST:20180607T142810Z:7dcaaf0d-fd2d-4f2d-b846-2905a6fae708"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:37 GMT"
+ "Thu, 07 Jun 2018 14:28:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -274,28 +292,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3Nzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6aea54a9-02ff-4c0d-b87e-7edc3770de05"
+ "41b83fcc-b63a-4738-99ea-b71ddff00ae6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7715.azuredatalakestore.net\",\r\n \"accountId\": \"8e55b47a-c8f3-41e7-9e53-d6c970496b7d\",\r\n \"creationTime\": \"2017-12-07T03:54:07.6058834Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:54:07.6058834Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3b087d09-d31b-4b9f-b35d-9dad191c1231\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715\",\r\n \"name\": \"ps7715\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"dataLakePerformanceTierState\": \"Disabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps7799.azuredatalakestore.net\",\r\n \"accountId\": \"0c2ccfa1-08bd-4aec-a313-d62106b00ee3\",\r\n \"creationTime\": \"2018-06-07T14:27:35.5983178Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:27:35.5983178Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"5cebe0c6-3d81-4e8f-86f6-9d70a9d177ea\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799\",\r\n \"name\": \"ps7799\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "908"
+ "992"
],
"Content-Type": [
"application/json"
@@ -307,31 +325,28 @@
"no-cache"
],
"x-ms-request-id": [
- "5c04a19d-45ec-4598-af81-20f47acee7c6"
+ "44d7efef-84b5-4503-a8d5-35e2295da438"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14994"
],
"x-ms-correlation-request-id": [
- "11fed981-5acd-48a9-90e3-0a4c5a499aed"
+ "ce5058dd-2305-4950-a7fb-8f1f20cbff75"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035520Z:11fed981-5acd-48a9-90e3-0a4c5a499aed"
+ "AUSTRALIAEAST:20180607T142905Z:ce5058dd-2305-4950-a7fb-8f1f20cbff75"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:20 GMT"
+ "Thu, 07 Jun 2018 14:29:05 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -346,34 +361,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3Nzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "223"
],
"x-ms-client-request-id": [
- "10612bd3-6b1c-4eed-a3aa-169e58fa3620"
+ "70bf1444-52ee-450a-98ba-2d5ae13ae626"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8e55b47a-c8f3-41e7-9e53-d6c970496b7d\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715\",\r\n \"name\": \"ps7715\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0c2ccfa1-08bd-4aec-a313-d62106b00ee3\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799\",\r\n \"name\": \"ps7799\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "562"
+ "560"
],
"Content-Type": [
"application/json"
@@ -388,10 +403,10 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8e55b47a-c8f3-41e7-9e53-d6c970496b7d0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/0c2ccfa1-08bd-4aec-a313-d62106b00ee30?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "e8df5e62-79cc-463e-b439-f0a58b9f09a3"
+ "a9c6286d-9771-414b-9297-d4d790bd146f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -400,25 +415,22 @@
"1198"
],
"x-ms-correlation-request-id": [
- "8487719b-b962-4153-b3e4-d52313802525"
+ "97209b3b-00f7-4309-ac2a-e99262ce97fd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035405Z:8487719b-b962-4153-b3e4-d52313802525"
+ "AUSTRALIAEAST:20180607T142735Z:97209b3b-00f7-4309-ac2a-e99262ce97fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:05 GMT"
+ "Thu, 07 Jun 2018 14:27:34 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -433,13 +445,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8e55b47a-c8f3-41e7-9e53-d6c970496b7d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzhlNTViNDdhLWM4ZjMtNDFlNy05ZTUzLWQ2Yzk3MDQ5NmI3ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/0c2ccfa1-08bd-4aec-a313-d62106b00ee30?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzBjMmNjZmExLTA4YmQtNGFlYy1hMzEzLWQ2MjEwNmIwMGVlMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -460,31 +472,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b33fec89-0fde-469a-8ed0-58401f6d79f1"
+ "0ebbb0ac-bf58-4c3d-9b1f-757ae321f2d4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14998"
],
"x-ms-correlation-request-id": [
- "99cc2208-371c-434d-ab39-ccbf78f56139"
+ "dfd8bb44-2994-48d2-b74c-bd468fae0bad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035416Z:99cc2208-371c-434d-ab39-ccbf78f56139"
+ "AUSTRALIAEAST:20180607T142746Z:dfd8bb44-2994-48d2-b74c-bd468fae0bad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:16 GMT"
+ "Thu, 07 Jun 2018 14:27:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -499,13 +508,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8e55b47a-c8f3-41e7-9e53-d6c970496b7d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzhlNTViNDdhLWM4ZjMtNDFlNy05ZTUzLWQ2Yzk3MDQ5NmI3ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/0c2ccfa1-08bd-4aec-a313-d62106b00ee30?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzBjMmNjZmExLTA4YmQtNGFlYy1hMzEzLWQ2MjEwNmIwMGVlMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -526,31 +535,28 @@
"no-cache"
],
"x-ms-request-id": [
- "39c32750-c0a9-4ee2-ae85-2c07a8bf89fe"
+ "0ee14f09-4a9b-40ac-913c-e7fc3d8a6995"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14997"
],
"x-ms-correlation-request-id": [
- "37817707-8d36-41ce-aa4d-f873614c64c4"
+ "5484bf3a-944d-404d-af13-2989055fa16c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035427Z:37817707-8d36-41ce-aa4d-f873614c64c4"
+ "AUSTRALIAEAST:20180607T142757Z:5484bf3a-944d-404d-af13-2989055fa16c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:26 GMT"
+ "Thu, 07 Jun 2018 14:27:57 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -565,13 +571,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8e55b47a-c8f3-41e7-9e53-d6c970496b7d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzhlNTViNDdhLWM4ZjMtNDFlNy05ZTUzLWQ2Yzk3MDQ5NmI3ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/0c2ccfa1-08bd-4aec-a313-d62106b00ee30?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzBjMmNjZmExLTA4YmQtNGFlYy1hMzEzLWQ2MjEwNmIwMGVlMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -592,7 +598,7 @@
"no-cache"
],
"x-ms-request-id": [
- "c00bcf1b-100a-4f8d-97ac-1c047563f857"
+ "44644b9b-8486-447c-86d9-024697c4f617"
],
"X-Content-Type-Options": [
"nosniff"
@@ -601,22 +607,19 @@
"14996"
],
"x-ms-correlation-request-id": [
- "29dfb0f0-6e78-4a70-bfd0-7ce2b1e308b3"
+ "fdd40c74-d0c6-47ea-a89b-79ba06e4bfeb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035437Z:29dfb0f0-6e78-4a70-bfd0-7ce2b1e308b3"
+ "AUSTRALIAEAST:20180607T142809Z:fdd40c74-d0c6-47ea-a89b-79ba06e4bfeb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:37 GMT"
+ "Thu, 07 Jun 2018 14:28:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -631,25 +634,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4008be1f-3f24-4e70-9760-8dd808693e27"
+ "df1a5781-c448-4ed8-923a-dc76ed974a3a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4088' under resource group 'ps2234' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2641' under resource group 'ps5742' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -667,46 +670,49 @@
"gateway"
],
"x-ms-request-id": [
- "fd7ed078-5acd-4d70-a8cc-903e93a60afd"
+ "2ddcee94-14fc-4ba6-b73d-d3bd596a4489"
],
"x-ms-correlation-request-id": [
- "fd7ed078-5acd-4d70-a8cc-903e93a60afd"
+ "2ddcee94-14fc-4ba6-b73d-d3bd596a4489"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035438Z:fd7ed078-5acd-4d70-a8cc-903e93a60afd"
+ "AUSTRALIAEAST:20180607T142812Z:2ddcee94-14fc-4ba6-b73d-d3bd596a4489"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:38 GMT"
+ "Thu, 07 Jun 2018 14:28:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "138c895b-4664-475e-9118-ff487e2e9ea6"
+ "5055b840-31ae-4227-8658-f745eedab780"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4088' under resource group 'ps2234' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2641' under resource group 'ps5742' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -724,43 +730,46 @@
"gateway"
],
"x-ms-request-id": [
- "2eb9d46d-b2bd-4af0-b169-2b3592a971f7"
+ "81667ca6-8804-44c5-bf83-e1af10beae56"
],
"x-ms-correlation-request-id": [
- "2eb9d46d-b2bd-4af0-b169-2b3592a971f7"
+ "81667ca6-8804-44c5-bf83-e1af10beae56"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035439Z:2eb9d46d-b2bd-4af0-b169-2b3592a971f7"
+ "AUSTRALIAEAST:20180607T142812Z:81667ca6-8804-44c5-bf83-e1af10beae56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:38 GMT"
+ "Thu, 07 Jun 2018 14:28:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7715\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4088.azuredatalakeanalytics.net\",\r\n \"accountId\": \"77d99380-5a30-474f-a8f4-6499d301c698\",\r\n \"creationTime\": \"2017-12-07T03:54:43.2158112Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:54:43.2158112Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088\",\r\n \"name\": \"ps4088\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7799\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7799\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2641.azuredatalakeanalytics.net\",\r\n \"accountId\": \"585ef191-64ef-4af0-ac2f-1e4b31840dfa\",\r\n \"creationTime\": \"2018-06-07T14:28:19.3652253Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:28:19.3652253Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641\",\r\n \"name\": \"ps2641\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -772,7 +781,7 @@
"no-cache"
],
"x-ms-request-id": [
- "ad244a72-9224-4e61-b5da-8eef7f2217f4"
+ "80f8f2c4-e5ad-4299-82ee-5c6063ef1f86"
],
"X-Content-Type-Options": [
"nosniff"
@@ -781,22 +790,19 @@
"14988"
],
"x-ms-correlation-request-id": [
- "818392fb-5b6a-4f9c-b78a-3cd82f41f511"
+ "66f973af-d646-402f-a9f6-a93d6c2f1850"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035513Z:818392fb-5b6a-4f9c-b78a-3cd82f41f511"
+ "AUSTRALIAEAST:20180607T142854Z:66f973af-d646-402f-a9f6-a93d6c2f1850"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:13 GMT"
+ "Thu, 07 Jun 2018 14:28:53 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -811,28 +817,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4364800f-09b7-4d94-8343-7ccddb75e682"
+ "5618c5d9-dad3-4a51-b86c-fe54b2280edf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7715\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4088.azuredatalakeanalytics.net\",\r\n \"accountId\": \"77d99380-5a30-474f-a8f4-6499d301c698\",\r\n \"creationTime\": \"2017-12-07T03:54:43.2158112Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:54:43.2158112Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088\",\r\n \"name\": \"ps4088\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7799\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7799\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2641.azuredatalakeanalytics.net\",\r\n \"accountId\": \"585ef191-64ef-4af0-ac2f-1e4b31840dfa\",\r\n \"creationTime\": \"2018-06-07T14:28:19.3652253Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:28:19.3652253Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641\",\r\n \"name\": \"ps2641\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -844,31 +850,28 @@
"no-cache"
],
"x-ms-request-id": [
- "a02811b4-0561-4821-ae80-e28c583129ce"
+ "988ffc5c-11fe-4279-919d-f678c3d4c222"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14987"
],
"x-ms-correlation-request-id": [
- "a3babb4f-d962-464b-9512-055b9bbe233e"
+ "08a3d42d-ef47-4051-844e-0cc5153ed61e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035514Z:a3babb4f-d962-464b-9512-055b9bbe233e"
+ "AUSTRALIAEAST:20180607T142855Z:08a3d42d-ef47-4051-844e-0cc5153ed61e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:13 GMT"
+ "Thu, 07 Jun 2018 14:28:55 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -883,28 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "804e45ab-019e-4d87-a3d2-4bc7bae545c5"
+ "6bbd6c81-7320-43bd-a892-662a6c4c2371"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"ps7715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7715\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps4088.azuredatalakeanalytics.net\",\r\n \"accountId\": \"77d99380-5a30-474f-a8f4-6499d301c698\",\r\n \"creationTime\": \"2017-12-07T03:54:43.2158112Z\",\r\n \"lastModifiedTime\": \"2017-12-07T03:54:43.2158112Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088\",\r\n \"name\": \"ps4088\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"debugDataAccessLevel\": \"All\",\r\n \"defaultDataLakeStoreAccount\": \"ps7799\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7799\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 32,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 32,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"ps2641.azuredatalakeanalytics.net\",\r\n \"accountId\": \"585ef191-64ef-4af0-ac2f-1e4b31840dfa\",\r\n \"creationTime\": \"2018-06-07T14:28:19.3652253Z\",\r\n \"lastModifiedTime\": \"2018-06-07T14:28:19.3652253Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641\",\r\n \"name\": \"ps2641\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1216"
+ "1237"
],
"Content-Type": [
"application/json"
@@ -916,31 +919,28 @@
"no-cache"
],
"x-ms-request-id": [
- "c6989ad3-3963-4afd-bc4a-737db37a8f09"
+ "8fa76eb7-faea-4225-808d-49af1ee2f556"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14986"
],
"x-ms-correlation-request-id": [
- "9979b686-85ca-4c7b-afe3-70415be42c78"
+ "75c60308-4440-4dcd-a6f0-d81676e22a53"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035516Z:9979b686-85ca-4c7b-afe3-70415be42c78"
+ "AUSTRALIAEAST:20180607T142859Z:75c60308-4440-4dcd-a6f0-d81676e22a53"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:15 GMT"
+ "Thu, 07 Jun 2018 14:28:58 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -955,25 +955,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a8b922e7-41f3-4a51-930a-b82baabcee9d"
+ "d5bf5875-22fc-4784-916f-9232ad5ba93b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4088' under resource group 'ps2234' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2641' under resource group 'ps5742' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -991,46 +991,49 @@
"gateway"
],
"x-ms-request-id": [
- "79eecf23-e8f1-4dc9-9cf9-ab82ed881463"
+ "ccbaa23c-430a-4ae8-8c3b-6002c488a6b0"
],
"x-ms-correlation-request-id": [
- "79eecf23-e8f1-4dc9-9cf9-ab82ed881463"
+ "ccbaa23c-430a-4ae8-8c3b-6002c488a6b0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035519Z:79eecf23-e8f1-4dc9-9cf9-ab82ed881463"
+ "AUSTRALIAEAST:20180607T142903Z:ccbaa23c-430a-4ae8-8c3b-6002c488a6b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:19 GMT"
+ "Thu, 07 Jun 2018 14:29:03 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d39c870e-b44f-4af4-822c-39ba01c72401"
+ "9bc39d5e-31a0-4b5a-8288-c6c893baa652"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps4088' under resource group 'ps2234' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/ps2641' under resource group 'ps5742' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"153"
@@ -1048,55 +1051,58 @@
"gateway"
],
"x-ms-request-id": [
- "1a80b656-8fe7-4dc7-b8ef-65850be7c67e"
+ "e050dfb5-f3d0-4738-a300-b6d727502352"
],
"x-ms-correlation-request-id": [
- "1a80b656-8fe7-4dc7-b8ef-65850be7c67e"
+ "e050dfb5-f3d0-4738-a300-b6d727502352"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035520Z:1a80b656-8fe7-4dc7-b8ef-65850be7c67e"
+ "AUSTRALIAEAST:20180607T142904Z:e050dfb5-f3d0-4738-a300-b6d727502352"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:19 GMT"
+ "Thu, 07 Jun 2018 14:29:04 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7715\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7799\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"ps7799\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "200"
+ "198"
],
"x-ms-client-request-id": [
- "8e7f8f98-82d4-4cee-b92b-4ae8b3c4fb53"
+ "98cde4d1-c850-404d-a53d-2cdf3a366045"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7715\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"77d99380-5a30-474f-a8f4-6499d301c698\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088\",\r\n \"name\": \"ps4088\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"ps7799\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ps7799\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"585ef191-64ef-4af0-ac2f-1e4b31840dfa\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641\",\r\n \"name\": \"ps2641\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "489"
+ "487"
],
"Content-Type": [
"application/json"
@@ -1111,37 +1117,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/77d99380-5a30-474f-a8f4-6499d301c6980?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/585ef191-64ef-4af0-ac2f-1e4b31840dfa0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "1ed3f69c-b070-4e4b-822f-69fc7e5c79ef"
+ "b462d484-81ba-44c7-bd96-811a0faa1070"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "baf643f9-2625-486e-a31b-c4006f2ff193"
+ "4ae0d3c2-29a8-4354-a54c-606ed7ca554a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035441Z:baf643f9-2625-486e-a31b-c4006f2ff193"
+ "AUSTRALIAEAST:20180607T142819Z:4ae0d3c2-29a8-4354-a54c-606ed7ca554a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:40 GMT"
+ "Thu, 07 Jun 2018 14:28:18 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641/operationresults/0?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1156,16 +1159,16 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/77d99380-5a30-474f-a8f4-6499d301c6980?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83N2Q5OTM4MC01YTMwLTQ3NGYtYThmNC02NDk5ZDMwMWM2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/585ef191-64ef-4af0-ac2f-1e4b31840dfa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81ODVlZjE5MS02NGVmLTRhZjAtYWMyZi0xZTRiMzE4NDBkZmEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1183,31 +1186,28 @@
"no-cache"
],
"x-ms-request-id": [
- "671843e7-57af-4704-b199-f5c6a0af30dc"
+ "7debaebd-0eb3-49c4-ae76-493b5a62def8"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14991"
],
"x-ms-correlation-request-id": [
- "647f0a4a-2692-4109-aede-71b86d9df1e5"
+ "b748bdd1-5096-4061-82d9-c17b6598f69b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035451Z:647f0a4a-2692-4109-aede-71b86d9df1e5"
+ "AUSTRALIAEAST:20180607T142830Z:b748bdd1-5096-4061-82d9-c17b6598f69b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:54:51 GMT"
+ "Thu, 07 Jun 2018 14:28:30 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1222,16 +1222,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/77d99380-5a30-474f-a8f4-6499d301c6980?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83N2Q5OTM4MC01YTMwLTQ3NGYtYThmNC02NDk5ZDMwMWM2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/585ef191-64ef-4af0-ac2f-1e4b31840dfa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81ODVlZjE5MS02NGVmLTRhZjAtYWMyZi0xZTRiMzE4NDBkZmEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
@@ -1249,31 +1249,28 @@
"no-cache"
],
"x-ms-request-id": [
- "69baee7d-dcdc-4b6e-b666-091cbd6365de"
+ "787aa255-7e06-4cd1-9d3f-462741bf568b"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14990"
],
"x-ms-correlation-request-id": [
- "53740150-5abc-40bd-ac7e-89da9f77e3b9"
+ "87f3da50-0ffc-43ac-8528-70f942bfd0b2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035502Z:53740150-5abc-40bd-ac7e-89da9f77e3b9"
+ "AUSTRALIAEAST:20180607T142841Z:87f3da50-0ffc-43ac-8528-70f942bfd0b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:01 GMT"
+ "Thu, 07 Jun 2018 14:28:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1288,16 +1285,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/77d99380-5a30-474f-a8f4-6499d301c6980?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83N2Q5OTM4MC01YTMwLTQ3NGYtYThmNC02NDk5ZDMwMWM2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/eastus2/operationResults/585ef191-64ef-4af0-ac2f-1e4b31840dfa0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy81ODVlZjE5MS02NGVmLTRhZjAtYWMyZi0xZTRiMzE4NDBkZmEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1315,31 +1312,28 @@
"no-cache"
],
"x-ms-request-id": [
- "7927067a-5ee6-4ca5-a300-8087389d43cb"
+ "bb56a42d-ed93-4f1a-a57f-922a078a63c4"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14989"
],
"x-ms-correlation-request-id": [
- "08fa24db-33a8-4604-8472-de77be50f4b0"
+ "0bfe869e-c9b8-4134-97ee-8b87637d2029"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035513Z:08fa24db-33a8-4604-8472-de77be50f4b0"
+ "AUSTRALIAEAST:20180607T142853Z:0bfe869e-c9b8-4134-97ee-8b87637d2029"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:12 GMT"
+ "Thu, 07 Jun 2018 14:28:52 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1354,22 +1348,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20ge%20datetimeoffset'2017-12-07T03:54:43.2158112%2B00:00'&$orderby=submitTime%20desc&api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE3LTEyLTA3VDAzJTNBNTQlM0E0My4yMTU4MTEyJTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/jobs?$filter=submitTime%20ge%20datetimeoffset'2018-06-07T14:28:19.3652253%2B00:00'&$orderby=submitTime%20desc&api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L2pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE4LTA2LTA3VDE0JTNBMjglM0ExOS4zNjUyMjUzJTJCMDAlM0EwMCcmJG9yZGVyYnk9c3VibWl0VGltZSUyMGRlc2MmYXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fb770df-32eb-44fc-b7e3-18e17394412f"
+ "4f0b4963-1ef2-4447-a42a-34a40cf94943"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.3.0.0"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1384,7 +1378,7 @@
"chunked"
],
"x-ms-request-id": [
- "68f86f06-677c-486e-b2ab-61725edb6bee"
+ "76b4c3c3-856c-4a86-a26a-d7089086bc96"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1396,28 +1390,28 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:15 GMT"
+ "Thu, 07 Jun 2018 14:28:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeAnalytics/accounts/ps4088?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzNDA4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeAnalytics/accounts/ps2641?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0c447e51-52d3-48a9-8dab-f2e8de817699"
+ "f9e58a09-ef90-40fe-96ff-14c9391eed28"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.2.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.3.0.0"
]
},
"ResponseBody": "",
@@ -1432,28 +1426,28 @@
"no-cache"
],
"x-ms-request-id": [
- "b3d829fc-b0ec-4501-b5e4-44daeeb240c8"
+ "2ebee245-6aba-496b-ba66-5bcbcf61ee02"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "157c7486-959b-4d56-8dce-b44776e8bacd"
+ "9520a189-0fe9-4cbb-b5de-5b8795d2a0b7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035519Z:157c7486-959b-4d56-8dce-b44776e8bacd"
+ "AUSTRALIAEAST:20180607T142903Z:9520a189-0fe9-4cbb-b5de-5b8795d2a0b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:19 GMT"
+ "Thu, 07 Jun 2018 14:29:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1468,19 +1462,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzMjIzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3NzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3Nzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a207a2f-a5cf-4587-b671-0735d794268b"
+ "5dcd5881-b28a-42a9-ac7a-0eb6c32c0307"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1501,34 +1495,34 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8e55b47a-c8f3-41e7-9e53-d6c970496b7d1?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/0c2ccfa1-08bd-4aec-a313-d62106b00ee31?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "96c29e7e-f01b-4220-baad-333df33a6b13"
+ "90c3ae27-7850-461c-99a0-dd5bf2aec681"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "44df7866-3d63-4221-ae49-1c993330123f"
+ "93e8ff8d-0d79-4442-81d6-9c449af5e7a6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035524Z:44df7866-3d63-4221-ae49-1c993330123f"
+ "AUSTRALIAEAST:20180607T142910Z:93e8ff8d-0d79-4442-81d6-9c449af5e7a6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:23 GMT"
+ "Thu, 07 Jun 2018 14:29:09 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2234/providers/Microsoft.DataLakeStore/accounts/ps7715/operationresults/1?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799/operationresults/1?api-version=2016-11-01"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1543,13 +1537,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8e55b47a-c8f3-41e7-9e53-d6c970496b7d1?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzhlNTViNDdhLWM4ZjMtNDFlNy05ZTUzLWQ2Yzk3MDQ5NmI3ZDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/0c2ccfa1-08bd-4aec-a313-d62106b00ee31?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzBjMmNjZmExLTA4YmQtNGFlYy1hMzEzLWQ2MjEwNmIwMGVlMzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.7.2600.0",
+ "FxVersion/4.7.2650.0",
"OSName/Windows10Enterprise",
"OSVersion/6.3.16299",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
@@ -1570,31 +1564,88 @@
"no-cache"
],
"x-ms-request-id": [
- "542ea733-c98e-4c66-abcb-2ee07268e9f6"
+ "7ac18c4e-33cc-4b24-b72f-287193d765bf"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e1104ad-fefb-4743-90b6-59c10c6dec14"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T142921Z:7e1104ad-fefb-4743-90b6-59c10c6dec14"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 14:29:21 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5742/providers/Microsoft.DataLakeStore/accounts/ps7799/operationresults/1?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTc0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHM3Nzk5L29wZXJhdGlvbnJlc3VsdHMvMT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.3.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b3e5e4f0-7ed9-4bc0-9464-8cc2739d298c"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"14992"
],
"x-ms-correlation-request-id": [
- "9dc26d02-bfcf-4183-860c-081c586fb901"
+ "fa649dfa-79d2-44f5-bafc-7cf54448a3f1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035534Z:9dc26d02-bfcf-4183-860c-081c586fb901"
+ "AUSTRALIAEAST:20180607T142923Z:fa649dfa-79d2-44f5-bafc-7cf54448a3f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Connection": [
- "close"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:34 GMT"
+ "Thu, 07 Jun 2018 14:29:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1606,16 +1657,25 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps2234?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzMjIzND9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/ps5742?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3BzNTc0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6d668130-72e9-497c-8866-885060d99c5f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1632,44 +1692,47 @@
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-request-id": [
- "121f352a-39e3-47dc-83b6-cbefac58ff09"
+ "85c54632-6b06-477f-8498-82c5c98131dd"
],
"x-ms-correlation-request-id": [
- "121f352a-39e3-47dc-83b6-cbefac58ff09"
+ "85c54632-6b06-477f-8498-82c5c98131dd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035539Z:121f352a-39e3-47dc-83b6-cbefac58ff09"
+ "AUSTRALIAEAST:20180607T142927Z:85c54632-6b06-477f-8498-82c5c98131dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:39 GMT"
+ "Thu, 07 Jun 2018 14:29:27 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU16UXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM05ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1687,43 +1750,46 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14983"
],
"x-ms-request-id": [
- "1597d7bf-cb35-4779-8117-0992f2aff5c0"
+ "d9303181-5b50-4284-8902-43d5acbeeacb"
],
"x-ms-correlation-request-id": [
- "1597d7bf-cb35-4779-8117-0992f2aff5c0"
+ "d9303181-5b50-4284-8902-43d5acbeeacb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035539Z:1597d7bf-cb35-4779-8117-0992f2aff5c0"
+ "AUSTRALIAEAST:20180607T142942Z:d9303181-5b50-4284-8902-43d5acbeeacb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:39 GMT"
+ "Thu, 07 Jun 2018 14:29:42 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU16UXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM05ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1741,43 +1807,97 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14982"
],
"x-ms-request-id": [
- "1e00b8fd-2d8e-445b-8e25-2d8e700db6bd"
+ "e1adf780-62a8-4936-acec-685a795ba4dc"
],
"x-ms-correlation-request-id": [
- "1e00b8fd-2d8e-445b-8e25-2d8e700db6bd"
+ "e1adf780-62a8-4936-acec-685a795ba4dc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035555Z:1e00b8fd-2d8e-445b-8e25-2d8e700db6bd"
+ "AUSTRALIAEAST:20180607T142958Z:e1adf780-62a8-4936-acec-685a795ba4dc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:55:54 GMT"
+ "Thu, 07 Jun 2018 14:29:58 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU16UXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM05ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2016-02-01"
+ "User-Agent": [
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-request-id": [
+ "0d1f4f54-a6c9-4195-aed6-5e89fbf229b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d1f4f54-a6c9-4195-aed6-5e89fbf229b6"
+ ],
+ "x-ms-routing-request-id": [
+ "AUSTRALIAEAST:20180607T143014Z:0d1f4f54-a6c9-4195-aed6-5e89fbf229b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 07 Jun 2018 14:30:13 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM05ESXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "FxVersion/4.7.2650.0",
+ "OSName/Windows10Enterprise",
+ "OSVersion/6.3.16299",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0"
]
},
"ResponseBody": "",
@@ -1792,25 +1912,28 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14980"
],
"x-ms-request-id": [
- "4e054f81-9a2d-4626-b7de-10670c2b3da7"
+ "6be8e755-4726-4ce0-a2cc-15ba7bdb3bfc"
],
"x-ms-correlation-request-id": [
- "4e054f81-9a2d-4626-b7de-10670c2b3da7"
+ "6be8e755-4726-4ce0-a2cc-15ba7bdb3bfc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171207T035610Z:4e054f81-9a2d-4626-b7de-10670c2b3da7"
+ "AUSTRALIAEAST:20180607T143014Z:6be8e755-4726-4ce0-a2cc-15ba7bdb3bfc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 07 Dec 2017 03:56:09 GMT"
+ "Thu, 07 Jun 2018 14:30:14 GMT"
]
},
"StatusCode": 200
@@ -1818,9 +1941,9 @@
],
"Names": {
"": [
- "ps2234",
- "ps4088",
- "ps7715"
+ "ps5742",
+ "ps2641",
+ "ps7799"
]
},
"Variables": {
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/packages.config b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/packages.config
index 032a23492be9..09f6beba578e 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/packages.config
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/packages.config
@@ -5,7 +5,7 @@
-
+
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/AzureRM.DataLakeAnalytics.Netcore.psd1 b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/AzureRM.DataLakeAnalytics.Netcore.psd1
index 2e23b85ecd38..9afbef2ffb30 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/AzureRM.DataLakeAnalytics.Netcore.psd1
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/AzureRM.DataLakeAnalytics.Netcore.psd1
@@ -81,6 +81,9 @@ CmdletsToExport = 'Get-AzureRmDataLakeAnalyticsDataSource',
'New-AzureRmDataLakeAnalyticsCatalogSecret',
'Test-AzureRmDataLakeAnalyticsCatalogItem',
'Get-AzureRmDataLakeAnalyticsCatalogItem',
+ 'Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry',
+ 'Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry',
+ 'Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry',
'Set-AzureRmDataLakeAnalyticsDataSource',
'Wait-AzureRmDataLakeAnalyticsJob',
'Test-AzureRmDataLakeAnalyticsAccount',
@@ -112,6 +115,7 @@ AliasesToExport = 'Get-AdlAnalyticsDataSource', 'New-AdlCatalogCredential',
'Remove-AdlCatalogCredential', 'Remove-AdlCatalogSecret',
'Set-AdlCatalogCredential', 'Set-AdlCatalogSecret',
'New-AdlCatalogSecret', 'Test-AdlCatalogItem', 'Get-AdlCatalogItem',
+ 'Get-AdlCatalogItemAclEntry', 'Set-AdlCatalogItemAclEntry', 'Remove-AdlCatalogItemAclEntry',
'Set-AdlAnalyticsDataSource', 'Wait-AdlJob',
'Test-AdlAnalyticsAccount', 'Remove-AdlAnalyticsDataSource',
'Add-AdlAnalyticsDataSource', 'Stop-AdlJob', 'Get-AdlJob',
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/AzureRM.DataLakeAnalytics.psd1 b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/AzureRM.DataLakeAnalytics.psd1
index 6cb30110775e..1c9b37299b07 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/AzureRM.DataLakeAnalytics.psd1
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/AzureRM.DataLakeAnalytics.psd1
@@ -81,6 +81,9 @@ CmdletsToExport = 'Get-AzureRmDataLakeAnalyticsDataSource',
'New-AzureRmDataLakeAnalyticsCatalogSecret',
'Test-AzureRmDataLakeAnalyticsCatalogItem',
'Get-AzureRmDataLakeAnalyticsCatalogItem',
+ 'Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry',
+ 'Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry',
+ 'Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry',
'Set-AzureRmDataLakeAnalyticsDataSource',
'Wait-AzureRmDataLakeAnalyticsJob',
'Test-AzureRmDataLakeAnalyticsAccount',
@@ -111,7 +114,8 @@ CmdletsToExport = 'Get-AzureRmDataLakeAnalyticsDataSource',
AliasesToExport = 'Get-AdlAnalyticsDataSource', 'New-AdlCatalogCredential',
'Remove-AdlCatalogCredential', 'Remove-AdlCatalogSecret',
'Set-AdlCatalogCredential', 'Set-AdlCatalogSecret',
- 'New-AdlCatalogSecret', 'Test-AdlCatalogItem', 'Get-AdlCatalogItem',
+ 'New-AdlCatalogSecret', 'Test-AdlCatalogItem', 'Get-AdlCatalogItem',
+ 'Get-AdlCatalogItemAclEntry', 'Set-AdlCatalogItemAclEntry', 'Remove-AdlCatalogItemAclEntry',
'Set-AdlAnalyticsDataSource', 'Wait-AdlJob',
'Test-AdlAnalyticsAccount', 'Remove-AdlAnalyticsDataSource',
'Add-AdlAnalyticsDataSource', 'Stop-AdlJob', 'Get-AdlJob',
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/ChangeLog.md b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/ChangeLog.md
index 9f920db49ec2..ac010cfa5486 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/ChangeLog.md
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/ChangeLog.md
@@ -18,6 +18,10 @@
- Additional information about change #1
-->
## Current Release
+* Add support for Catalog ACLs through the following commands:
+ - Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry
+ - Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry
+ - Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry
* Fixed formatting of OutputType in help files
## Version 5.0.0
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.Netcore.csproj b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.Netcore.csproj
index 7c448671693c..0fcfffbb7eaf 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.Netcore.csproj
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.Netcore.csproj
@@ -32,7 +32,7 @@
-
+
@@ -72,4 +72,4 @@
-
\ No newline at end of file
+
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj
index 5525393791a1..4e044106a5c7 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj
@@ -38,15 +38,18 @@
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.Analytics.3.1.2-preview\lib\net452\Microsoft.Azure.Management.DataLake.Analytics.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.Analytics.3.3.0-preview\lib\net452\Microsoft.Azure.Management.DataLake.Analytics.dll
True
+
+
+
@@ -75,6 +78,7 @@
+
@@ -115,6 +119,7 @@
ResXFileCodeGenerator
Resources.Designer.cs
+ Designer
@@ -140,4 +145,4 @@
-
+
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/AddAzureRmDataLakeAnalyticsDataSource.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/AddAzureRmDataLakeAnalyticsDataSource.cs
index e20c51a747ef..5f6c31741259 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/AddAzureRmDataLakeAnalyticsDataSource.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/AddAzureRmDataLakeAnalyticsDataSource.cs
@@ -70,21 +70,19 @@ public override void ExecuteCmdlet()
{
if (ParameterSetName.Equals(BlobParameterSetName, StringComparison.InvariantCultureIgnoreCase))
{
- var toAdd = new StorageAccountInfo
+ var toAdd = new AddStorageAccountParameters
{
- Name = Blob,
AccessKey = AccessKey
-
};
- DataLakeAnalyticsClient.AddStorageAccount(ResourceGroupName, Account, toAdd);
+ DataLakeAnalyticsClient.AddStorageAccount(ResourceGroupName, Account, Blob, toAdd);
}
else
{
- var toAdd = new DataLakeStoreAccountInfo
- {
- Name = DataLakeStore
- };
+ var toAdd = new DataLakeStoreAccountInformation
+ (
+ name: DataLakeStore
+ );
DataLakeAnalyticsClient.AddDataLakeStoreAccount(ResourceGroupName, Account, toAdd);
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs
new file mode 100644
index 000000000000..5209a8774ea8
--- /dev/null
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs
@@ -0,0 +1,116 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.DataLakeAnalytics.Commands
+{
+ [Cmdlet(VerbsCommon.Get, "AzureRmDataLakeAnalyticsCatalogItemAclEntry", DefaultParameterSetName = BaseCatalogParameterSetName),
+ OutputType(typeof(PSDataLakeAnalyticsAcl))]
+ [Alias("Get-AdlCatalogItemAclEntry")]
+ public class GetAzureRmDataLakeAnalyticsCatalogItemAclEntry : DataLakeAnalyticsCmdletBase
+ {
+ private const string BaseCatalogParameterSetName = "GetCatalogAclEntry";
+ private const string UserOwnerCatalogParameterSetName = "GetCatalogAclEntryForUserOwner";
+ private const string GroupOwnerCatalogParameterSetName = "GetCatalogAclEntryForGroupOwner";
+ private const string BaseCatalogItemParameterSetName = "GetCatalogItemAclEntry";
+ private const string UserOwnerCatalogItemParameterSetName = "GetCatalogItemAclEntryForUserOwner";
+ private const string GroupOwnerCatalogItemParameterSetName = "GetCatalogItemAclEntryForGroupOwner";
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true,
+ ParameterSetName = BaseCatalogParameterSetName, HelpMessage = "Specifies the Data Lake Analytics account name.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true,
+ ParameterSetName = UserOwnerCatalogParameterSetName, HelpMessage = "Specifies the Data Lake Analytics account name.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true,
+ ParameterSetName = GroupOwnerCatalogParameterSetName, HelpMessage = "Specifies the Data Lake Analytics account name.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true,
+ ParameterSetName = BaseCatalogItemParameterSetName, HelpMessage = "Specifies the Data Lake Analytics account name.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true,
+ ParameterSetName = UserOwnerCatalogItemParameterSetName, HelpMessage = "Specifies the Data Lake Analytics account name.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true,
+ ParameterSetName = GroupOwnerCatalogItemParameterSetName, HelpMessage = "Specifies the Data Lake Analytics account name.")]
+ [ValidateNotNullOrEmpty]
+ [Alias("AccountName")]
+ public string Account { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = UserOwnerCatalogParameterSetName, HelpMessage = "Get ACL entry of catalog for user owner.")]
+ [Parameter(Mandatory = true, ParameterSetName = UserOwnerCatalogItemParameterSetName, HelpMessage = "Get ACL entry of catalog item for user owner.")]
+ public SwitchParameter UserOwner { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = GroupOwnerCatalogParameterSetName, HelpMessage = "Get ACL entry of catalog for group owner.")]
+ [Parameter(Mandatory = true, ParameterSetName = GroupOwnerCatalogItemParameterSetName, HelpMessage = "Get ACL entry of catalog item for group owner.")]
+ public SwitchParameter GroupOwner { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = BaseCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserOwnerCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupOwnerCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [PSArgumentCompleter("Database")]
+ public string ItemType { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = BaseCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserOwnerCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupOwnerCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [ValidateNotNullOrEmpty]
+ public CatalogPathInstance Path { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ string[] requiredAceTypes;
+ switch (ParameterSetName)
+ {
+ case BaseCatalogParameterSetName: case BaseCatalogItemParameterSetName:
+ requiredAceTypes = new[] {AclType.User, AclType.Group, AclType.Other};
+ break;
+
+ case UserOwnerCatalogParameterSetName: case UserOwnerCatalogItemParameterSetName:
+ requiredAceTypes = new[] {AclType.UserObj};
+ break;
+
+ case GroupOwnerCatalogParameterSetName: case GroupOwnerCatalogItemParameterSetName:
+ requiredAceTypes = new[] {AclType.GroupObj};
+ break;
+
+ default: throw new ArgumentException($"Invalid parameter set: {this.ParameterSetName}");
+ }
+
+ var toReturn = DataLakeAnalyticsClient.GetCatalogItemAclEntry(Account, Path, ItemType, requiredAceTypes).Select(acl => new PSDataLakeAnalyticsAcl(acl)).ToList();
+ if (toReturn.Count == 1)
+ {
+ WriteObject(toReturn[0]);
+ }
+ else
+ {
+ WriteObject(toReturn, true);
+ }
+ }
+ }
+}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsAccount.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsAccount.cs
index 3f19eebe124e..f18ffaea9aaf 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsAccount.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsAccount.cs
@@ -106,7 +106,7 @@ public override void ExecuteCmdlet()
}
}
- var defaultStorage = new DataLakeStoreAccountInfo
+ var defaultStorage = new AddDataLakeStoreWithAccountParameters
{
Name = DefaultDataLakeStore
};
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs
new file mode 100644
index 000000000000..57149a8cd7b1
--- /dev/null
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs
@@ -0,0 +1,122 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
+using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
+using System;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.DataLakeAnalytics.Commands
+{
+ [Cmdlet(VerbsCommon.Remove, "AzureRmDataLakeAnalyticsCatalogItemAclEntry", DefaultParameterSetName = UserCatalogParameterSetName, SupportsShouldProcess = true),
+ OutputType(typeof(bool))]
+ [Alias("Remove-AdlCatalogItemAclEntry")]
+ public class RemoveAzureRmDataLakeAnalyticsCatalogItemAclEntry : DataLakeAnalyticsCmdletBase
+ {
+ private const string UserCatalogParameterSetName = "RemoveCatalogAclEntryForUser";
+ private const string UserCatalogItemParameterSetName = "RemoveCatalogItemAclEntryForUser";
+ private const string GroupCatalogParameterSetName = "RemoveCatalogAclEntryForGroup";
+ private const string GroupCatalogItemParameterSetName = "RemoveCatalogItemAclEntryForGroup";
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true,
+ HelpMessage = "Specifies the Data Lake Analytics account name.")]
+ [ValidateNotNullOrEmpty]
+ [Alias("AccountName")]
+ public string Account { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = UserCatalogParameterSetName, HelpMessage = "Remove ACL entry of catalog for user.")]
+ [Parameter(Mandatory = true, ParameterSetName = UserCatalogItemParameterSetName, HelpMessage = "Remove ACL entry of catalog item for user.")]
+ public SwitchParameter User { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = GroupCatalogParameterSetName, HelpMessage = "Remove ACL entry of catalog for group.")]
+ [Parameter(Mandatory = true, ParameterSetName = GroupCatalogItemParameterSetName, HelpMessage = "Remove ACL entry of catalog item for group.")]
+ public SwitchParameter Group { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogParameterSetName, HelpMessage = "The identity of the user to remove.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogParameterSetName, HelpMessage = "The identity of the group to remove.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogItemParameterSetName, HelpMessage = "The identity of the user to remove.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogItemParameterSetName, HelpMessage = "The identity of the group to remove.")]
+ [Alias("Id", "UserId")]
+ public Guid ObjectId { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [PSArgumentCompleter("Database")]
+ public string ItemType { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [ValidateNotNullOrEmpty]
+ public CatalogPathInstance Path { get; set; }
+
+ [Parameter(Mandatory = false,
+ HelpMessage = "Indicates a boolean response should be returned indicating the result of the delete operation.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ string processMessage = string.Empty;
+ string target = string.Empty;
+
+ switch (this.ParameterSetName)
+ {
+ case UserCatalogParameterSetName: case GroupCatalogParameterSetName:
+ processMessage = string.Format(Resources.RemoveDataLakeAnalyticsCatalogAcl, Account);
+ target = Account;
+ break;
+
+ case UserCatalogItemParameterSetName: case GroupCatalogItemParameterSetName:
+ processMessage = string.Format(Resources.RemoveDataLakeAnalyticsCatalogItemAcl, Path.FullCatalogItemPath);
+ target = Path.FullCatalogItemPath ?? Account;
+ break;
+
+ default: throw new ArgumentException($"Invalid parameter set: {this.ParameterSetName}");
+ }
+
+ string aceType = string.Empty;
+ switch (this.ParameterSetName)
+ {
+ case UserCatalogParameterSetName: case UserCatalogItemParameterSetName: aceType = AclType.User; break;
+ case GroupCatalogParameterSetName: case GroupCatalogItemParameterSetName: aceType = AclType.Group; break;
+ default: throw new ArgumentException($"Invalid parameter set: {this.ParameterSetName}");
+ }
+
+ ConfirmAction(
+ processMessage,
+ target,
+ () =>
+ {
+ DataLakeAnalyticsClient.RemoveCatalogItemAclEntry(Account, Path, ItemType, aceType, ObjectId);
+ if (PassThru)
+ {
+ WriteObject(true);
+ }
+ });
+ }
+ }
+}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs
new file mode 100644
index 000000000000..e24ba4aaadbf
--- /dev/null
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogItemAclEntry.cs
@@ -0,0 +1,221 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
+using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.DataLakeAnalytics.Commands
+{
+ [Cmdlet(VerbsCommon.Set, "AzureRmDataLakeAnalyticsCatalogItemAclEntry", DefaultParameterSetName = UserCatalogParameterSetName, SupportsShouldProcess = true),
+ OutputType(typeof(PSDataLakeAnalyticsAcl))]
+ [Alias("Set-AdlCatalogItemAclEntry")]
+ public class SetAzureRmDataLakeAnalyticsCatalogItemAclEntry : DataLakeAnalyticsCmdletBase
+ {
+ private const string UserCatalogParameterSetName = "SetCatalogAclEntryForUser";
+ private const string UserCatalogItemParameterSetName = "SetCatalogItemAclEntryForUser";
+ private const string GroupCatalogParameterSetName = "SetCatalogAclEntryForGroup";
+ private const string GroupCatalogItemParameterSetName = "SetCatalogItemAclEntryForGroup";
+ private const string OtherCatalogParameterSetName = "SetCatalogAclEntryForOther";
+ private const string OtherCatalogItemParameterSetName = "SetCatalogItemAclEntryForOther";
+ private const string UserOwnerCatalogParameterSetName = "SetCatalogAclEntryForUserOwner";
+ private const string UserOwnerCatalogItemParameterSetName = "SetCatalogItemAclEntryForUserOwner";
+ private const string GroupOwnerCatalogParameterSetName = "SetCatalogAclEntryForGroupOwner";
+ private const string GroupOwnerCatalogItemParameterSetName = "SetCatalogItemAclEntryForGroupOwner";
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true,
+ HelpMessage = "Specifies the Data Lake Analytics account name.")]
+ [ValidateNotNullOrEmpty]
+ [Alias("AccountName")]
+ public string Account { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = UserCatalogParameterSetName, HelpMessage = "Set ACL entry of catalog for user.")]
+ [Parameter(Mandatory = true, ParameterSetName = UserCatalogItemParameterSetName, HelpMessage = "Set ACL entry of catalog item for user.")]
+ public SwitchParameter User { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = GroupCatalogParameterSetName, HelpMessage = "Set ACL entry of catalog for group.")]
+ [Parameter(Mandatory = true, ParameterSetName = GroupCatalogItemParameterSetName, HelpMessage = "Set ACL entry of catalog item for group.")]
+ public SwitchParameter Group { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = OtherCatalogParameterSetName, HelpMessage = "Set ACL entry of catalog for other.")]
+ [Parameter(Mandatory = true, ParameterSetName = OtherCatalogItemParameterSetName, HelpMessage = "Set ACL entry of catalog item for other.")]
+ public SwitchParameter Other { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = UserOwnerCatalogParameterSetName, HelpMessage = "Set ACL entry of catalog for user owner.")]
+ [Parameter(Mandatory = true, ParameterSetName = UserOwnerCatalogItemParameterSetName, HelpMessage = "Set ACL entry of catalog item for user owner.")]
+ public SwitchParameter UserOwner { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = GroupOwnerCatalogParameterSetName, HelpMessage = "Set ACL entry of catalog for group owner.")]
+ [Parameter(Mandatory = true, ParameterSetName = GroupOwnerCatalogItemParameterSetName, HelpMessage = "Set ACL entry of catalog item for group owner.")]
+ public SwitchParameter GroupOwner { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogParameterSetName, HelpMessage = "The identity of the user to set.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogParameterSetName, HelpMessage = "The identity of the group to set.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogItemParameterSetName, HelpMessage = "The identity of the user to set.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogItemParameterSetName, HelpMessage = "The identity of the group to set.")]
+ [Alias("Id", "UserId")]
+ public Guid ObjectId { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = OtherCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserOwnerCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupOwnerCatalogItemParameterSetName, HelpMessage = "The type of the catalog item(s).")]
+ [PSArgumentCompleter("Database")]
+ public string ItemType { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = OtherCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserOwnerCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupOwnerCatalogItemParameterSetName,
+ HelpMessage = "The catalog item path to search within, in the format:" +
+ "'DatabaseName...'.")]
+ [ValidateNotNullOrEmpty]
+ public CatalogPathInstance Path { get; set; }
+
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = OtherCatalogParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserOwnerCatalogParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupOwnerCatalogParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserCatalogItemParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupCatalogItemParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = OtherCatalogItemParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = UserOwnerCatalogItemParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true,
+ ParameterSetName = GroupOwnerCatalogItemParameterSetName,
+ HelpMessage = "The permissions to set for the ACE. Possible values include: 'None', 'Read', 'ReadWrite'.")]
+ [ValidateNotNull]
+ public DataLakeAnalyticsEnums.PermissionType Permissions { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ WriteWarning(Resources.IncorrectOutputTypeWarning);
+ string processMessage = string.Empty;
+ string target = string.Empty;
+ switch (this.ParameterSetName)
+ {
+ case UserCatalogParameterSetName: case GroupCatalogParameterSetName: case OtherCatalogParameterSetName:
+ case UserOwnerCatalogParameterSetName: case GroupOwnerCatalogParameterSetName:
+ processMessage = string.Format(Resources.SetDataLakeCatalogAclEntry, Account);
+ target = Account;
+ break;
+
+ case UserCatalogItemParameterSetName: case GroupCatalogItemParameterSetName: case OtherCatalogItemParameterSetName:
+ case UserOwnerCatalogItemParameterSetName: case GroupOwnerCatalogItemParameterSetName:
+ processMessage = string.Format(Resources.SetDataLakeCatalogItemAclEntry, Path.FullCatalogItemPath);
+ target = Path.FullCatalogItemPath;
+ break;
+
+ default: throw new ArgumentException($"Invalid parameter set: {this.ParameterSetName}");
+ }
+
+ string aceType = string.Empty;
+ string[] returnedAceTypes;
+ switch (this.ParameterSetName)
+ {
+ case UserCatalogParameterSetName: case UserCatalogItemParameterSetName:
+ aceType = AclType.User;
+ returnedAceTypes = new[] {AclType.User, AclType.Group, AclType.Other};
+ break;
+
+ case GroupCatalogParameterSetName: case GroupCatalogItemParameterSetName:
+ aceType = AclType.Group;
+ returnedAceTypes = new[] {AclType.User, AclType.Group, AclType.Other};
+ break;
+
+ case OtherCatalogParameterSetName: case OtherCatalogItemParameterSetName: aceType = AclType.Other;
+ returnedAceTypes = new[] {AclType.User, AclType.Group, AclType.Other};
+ break;
+
+ case UserOwnerCatalogParameterSetName: case UserOwnerCatalogItemParameterSetName:
+ aceType = AclType.UserObj;
+ returnedAceTypes = new[] {AclType.UserObj};
+ break;
+
+ case GroupOwnerCatalogParameterSetName: case GroupOwnerCatalogItemParameterSetName:
+ aceType = AclType.GroupObj;
+ returnedAceTypes = new[] {AclType.GroupObj};
+ break;
+
+ default: throw new ArgumentException($"Invalid parameter set: {this.ParameterSetName}");
+ }
+
+ ConfirmAction(
+ processMessage,
+ target,
+ () =>
+ {
+ DataLakeAnalyticsClient.AddOrUpdateCatalogItemAclEntry(Account, Path, ItemType, aceType, ObjectId, Permissions);
+ var toReturn = DataLakeAnalyticsClient.GetCatalogItemAclEntry(Account, Path, ItemType, returnedAceTypes)
+ .Select(acl => new PSDataLakeAnalyticsAcl(acl))
+ .ToList();
+ if (toReturn.Count == 1)
+ {
+ WriteObject(toReturn[0]);
+ }
+ else
+ {
+ WriteObject(toReturn, true);
+ }
+ });
+ }
+ }
+}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsDataSource.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsDataSource.cs
index 24b1638be803..4e9d3ff759af 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsDataSource.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsDataSource.cs
@@ -52,13 +52,12 @@ public class SetAzureDataLakeAnalyticsDataSource : DataLakeAnalyticsCmdletBase
public override void ExecuteCmdlet()
{
// We only support updates for Storage accounts.
- var toAdd = new StorageAccountInfo
+ var toAdd = new UpdateStorageAccountParameters
{
- Name = Blob,
AccessKey = AccessKey
};
- DataLakeAnalyticsClient.SetStorageAccount(ResourceGroupName, Account, toAdd);
+ DataLakeAnalyticsClient.SetStorageAccount(ResourceGroupName, Account, Blob, toAdd);
}
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/AdlDataSource.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/AdlDataSource.cs
index 486cba47d961..b7c545e947d0 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/AdlDataSource.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/AdlDataSource.cs
@@ -55,7 +55,7 @@ public class AdlDataSource
///
/// The data source information.
/// if set to true [is default].
- public AdlDataSource(DataLakeStoreAccountInfo dataSourceInfo, bool isDefault = false)
+ public AdlDataSource(DataLakeStoreAccountInformation dataSourceInfo, bool isDefault = false)
{
Name = dataSourceInfo.Name;
Type = DataLakeAnalyticsEnums.DataSourceType.DataLakeStore;
@@ -66,7 +66,7 @@ public AdlDataSource(DataLakeStoreAccountInfo dataSourceInfo, bool isDefault = f
/// Initializes a new instance of the class.
///
/// The data source information.
- public AdlDataSource(StorageAccountInfo dataSourceInfo)
+ public AdlDataSource(StorageAccountInformation dataSourceInfo)
{
Name = dataSourceInfo.Name;
Type = DataLakeAnalyticsEnums.DataSourceType.Blob;
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsClient.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsClient.cs
index 4c9b8ad2fb77..b53fa76daedd 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsClient.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsClient.cs
@@ -79,9 +79,9 @@ public DataLakeAnalyticsClient(IAzureContext context)
public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName, string accountName,
string location,
- DataLakeStoreAccountInfo defaultDataLakeStoreAccount = null,
- IList additionalDataLakeStoreAccounts = null,
- IList additionalStorageAccounts = null,
+ AddDataLakeStoreWithAccountParameters defaultDataLakeStoreAccount = null,
+ IList additionalDataLakeStoreAccounts = null,
+ IList additionalStorageAccounts = null,
Hashtable customTags = null,
int? maxAnalyticsUnits = 0,
int? maxJobCount = 0,
@@ -97,7 +97,7 @@ public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName,
var tags = TagsConversionHelper.CreateTagDictionary(customTags, true);
- var parameters = new DataLakeAnalyticsAccount
+ var parameters = new CreateDataLakeAnalyticsAccountParameters
{
Location = location,
Tags = tags ?? new Dictionary()
@@ -125,23 +125,23 @@ public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName,
}
else if (defaultDataLakeStoreAccount != null)
{
- parameters.DataLakeStoreAccounts = new List
+ parameters.DataLakeStoreAccounts = new List
{
defaultDataLakeStoreAccount
};
}
- if(maxAnalyticsUnits.HasValue && maxAnalyticsUnits > 0)
+ if (maxAnalyticsUnits.HasValue && maxAnalyticsUnits > 0)
{
parameters.MaxDegreeOfParallelism = maxAnalyticsUnits;
}
- if(maxJobCount.HasValue && maxJobCount > 0)
+ if (maxJobCount.HasValue && maxJobCount > 0)
{
parameters.MaxJobCount = maxJobCount;
}
- if(queryStoreRetention.HasValue && queryStoreRetention > 0)
+ if (queryStoreRetention.HasValue && queryStoreRetention > 0)
{
parameters.QueryStoreRetention = queryStoreRetention;
}
@@ -176,7 +176,7 @@ public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName,
}
return accountExists
- ? _accountClient.Account.Update(resourceGroupName, accountName, new DataLakeAnalyticsAccountUpdateParameters
+ ? _accountClient.Accounts.Update(resourceGroupName, accountName, new UpdateDataLakeAnalyticsAccountParameters
{
MaxDegreeOfParallelism = parameters.MaxDegreeOfParallelism,
MaxJobCount = parameters.MaxJobCount,
@@ -186,7 +186,7 @@ public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName,
FirewallState = parameters.FirewallState,
FirewallAllowAzureIps = parameters.FirewallAllowAzureIps
})
- : _accountClient.Account.Create(resourceGroupName, accountName, parameters);
+ : _accountClient.Accounts.Create(resourceGroupName, accountName, parameters);
}
public void DeleteAccount(string resourceGroupName, string accountName)
@@ -201,7 +201,7 @@ public void DeleteAccount(string resourceGroupName, string accountName)
throw new InvalidOperationException(string.Format(Properties.Resources.AccountDoesNotExist, accountName));
}
- _accountClient.Account.Delete(resourceGroupName, accountName);
+ _accountClient.Accounts.Delete(resourceGroupName, accountName);
}
public bool TestAccount(string resourceGroupName, string accountName)
@@ -230,12 +230,12 @@ public DataLakeAnalyticsAccount GetAccount(string resourceGroupName, string acco
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- return _accountClient.Account.Get(resourceGroupName, accountName);
+ return _accountClient.Accounts.Get(resourceGroupName, accountName);
}
public List ListAccounts(string resourceGroupName, string filter, int? top, int? skip)
{
- var parameters = new ODataQuery
+ var parameters = new ODataQuery
{
Filter = filter,
Top = top,
@@ -244,8 +244,8 @@ public List ListAccounts(string resourceGroupName
var accountList = new List();
var response = string.IsNullOrEmpty(resourceGroupName)
- ? _accountClient.Account.List(parameters)
- : _accountClient.Account.ListByResourceGroup(resourceGroupName, parameters);
+ ? _accountClient.Accounts.List(parameters)
+ : _accountClient.Accounts.ListByResourceGroup(resourceGroupName, parameters);
accountList.AddRange(response);
while (!string.IsNullOrEmpty(response.NextPageLink))
@@ -258,7 +258,7 @@ public List ListAccounts(string resourceGroupName
}
public void AddDataLakeStoreAccount(string resourceGroupName, string accountName,
- DataLakeStoreAccountInfo storageToAdd)
+ DataLakeStoreAccountInformation storageToAdd)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -269,7 +269,7 @@ public void AddDataLakeStoreAccount(string resourceGroupName, string accountName
storageToAdd.Name);
}
- public IEnumerable ListDataLakeStoreAccounts(string resourceGroupName, string accountName)
+ public IEnumerable ListDataLakeStoreAccounts(string resourceGroupName, string accountName)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -277,7 +277,7 @@ public IEnumerable ListDataLakeStoreAccounts(string re
}
var response = _accountClient.DataLakeStoreAccounts.ListByAccount(resourceGroupName, accountName);
- var toReturn = new List();
+ var toReturn = new List();
toReturn.AddRange(response);
while (!string.IsNullOrEmpty(response.NextPageLink))
@@ -289,7 +289,7 @@ public IEnumerable ListDataLakeStoreAccounts(string re
return toReturn;
}
- public DataLakeStoreAccountInfo GetDataLakeStoreAccount(string resourceGroupName, string accountName, string dataLakeStoreAccountName)
+ public DataLakeStoreAccountInformation GetDataLakeStoreAccount(string resourceGroupName, string accountName, string dataLakeStoreAccountName)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -311,39 +311,27 @@ public void RemoveDataLakeStoreAccount(string resourceGroupName, string accountN
dataLakeStoreAccountName);
}
- public void AddStorageAccount(string resourceGroupName, string accountName, StorageAccountInfo storageToAdd)
+ public void AddStorageAccount(string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters storageParams)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- var storageParams = new AddStorageAccountParameters
- {
- AccessKey = storageToAdd.AccessKey
- };
-
- _accountClient.StorageAccounts.Add(resourceGroupName, accountName, storageToAdd.Name,
- storageParams);
+ _accountClient.StorageAccounts.Add(resourceGroupName, accountName, storageAccountName, storageParams);
}
- public void SetStorageAccount(string resourceGroupName, string accountName, StorageAccountInfo storageToSet)
+ public void SetStorageAccount(string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters storageParams)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- var storageParams = new UpdateStorageAccountParameters
- {
- AccessKey = storageToSet.AccessKey
- };
-
- _accountClient.StorageAccounts.Update(resourceGroupName, accountName,
- storageToSet.Name, storageParams);
+ _accountClient.StorageAccounts.Update(resourceGroupName, accountName, storageAccountName, storageParams);
}
- public IEnumerable ListStorageAccounts(string resourceGroupName, string accountName)
+ public IEnumerable ListStorageAccounts(string resourceGroupName, string accountName)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -351,7 +339,7 @@ public IEnumerable ListStorageAccounts(string resourceGroupN
}
var response = _accountClient.StorageAccounts.ListByAccount(resourceGroupName, accountName);
- var toReturn = new List();
+ var toReturn = new List();
toReturn.AddRange(response);
while (!string.IsNullOrEmpty(response.NextPageLink))
@@ -363,7 +351,7 @@ public IEnumerable ListStorageAccounts(string resourceGroupN
return toReturn;
}
- public StorageAccountInfo GetStorageAccount(string resourceGroupName, string accountName, string storageAccountName)
+ public StorageAccountInformation GetStorageAccount(string resourceGroupName, string accountName, string storageAccountName)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -408,9 +396,8 @@ public IEnumerable GetAllDataSources(string resourceGroupName, st
private IPage ListAccountsWithNextLink(string nextLink)
{
- return _accountClient.Account.ListNext(nextLink);
+ return _accountClient.Accounts.ListNext(nextLink);
}
-
#endregion
#region Firewall Management
@@ -421,7 +408,7 @@ public FirewallRule AddOrUpdateFirewallRule(string resourceGroupName, string acc
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- if (_accountClient.Account.Get(resourceGroupName, accountName).FirewallState == FirewallState.Disabled)
+ if (_accountClient.Accounts.Get(resourceGroupName, accountName).FirewallState == FirewallState.Disabled)
{
runningCommand.WriteWarning(string.Format(Properties.Resources.FirewallDisabledWarning, accountName));
}
@@ -430,7 +417,7 @@ public FirewallRule AddOrUpdateFirewallRule(string resourceGroupName, string acc
resourceGroupName,
accountName,
ruleName,
- new FirewallRule
+ new CreateOrUpdateFirewallRuleParameters
{
StartIpAddress = startIp,
EndIpAddress = endIp
@@ -445,7 +432,7 @@ public void DeleteFirewallRule(string resourceGroupName, string accountName, str
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- if (_accountClient.Account.Get(resourceGroupName, accountName).FirewallState == FirewallState.Disabled)
+ if (_accountClient.Accounts.Get(resourceGroupName, accountName).FirewallState == FirewallState.Disabled)
{
runningCommand.WriteWarning(string.Format(Properties.Resources.FirewallDisabledWarning, accountName));
}
@@ -821,6 +808,138 @@ public IList GetCatalogItem(string accountName, CatalogPathInstance
return toReturn;
}
+ public List GetCatalogItemAclEntry(string accountName, CatalogPathInstance path, string catalogItemType, IEnumerable requiredAceTypes)
+ {
+ IPage firstPage;
+ Func> getNextPage;
+
+ // If catalog item type is not specified, the entire ACL of catalog will be retrieved
+ if (string.IsNullOrEmpty(catalogItemType))
+ {
+ firstPage = _catalogClient.Catalog.ListAcls(accountName);
+ getNextPage = nextPageLink => _catalogClient.Catalog.ListAclsNext(nextPageLink);
+ }
+ else
+ {
+ // If catalog item type is specified, ACL of the specified catalog item will be retrieved.
+ if (string.IsNullOrEmpty(path?.FullCatalogItemPath))
+ {
+ throw new InvalidOperationException(Properties.Resources.MissingCatalogPathForAclOperation);
+ }
+
+ var itemType = (DataLakeAnalyticsEnums.CatalogItemType)Enum.Parse(typeof(DataLakeAnalyticsEnums.CatalogItemType), catalogItemType, true);
+ switch (itemType)
+ {
+ case DataLakeAnalyticsEnums.CatalogItemType.Database:
+ firstPage = _catalogClient.Catalog.ListAclsByDatabase(accountName, path.DatabaseName);
+ getNextPage = nextPageLink => _catalogClient.Catalog.ListAclsByDatabase(nextPageLink, path.DatabaseName);
+ break;
+
+ default: throw new ArgumentException($"ACL operations are unsupported for catatlog item type: {itemType}");
+ }
+ }
+
+ var toReturn = GetCatalogItemAclEntry(firstPage, getNextPage);
+ return toReturn.Where(acl => acl?.AceType != null && requiredAceTypes.Contains(acl.AceType)).ToList();
+ }
+
+ public void AddOrUpdateCatalogItemAclEntry(
+ string accountName,
+ CatalogPathInstance path,
+ string catalogItemType,
+ string aceType,
+ Guid principalId,
+ DataLakeAnalyticsEnums.PermissionType permissions)
+ {
+ // Make sure principal ID is not empty GUID.
+ // When principal ID is empty GUID:
+ // If ACE type is User or Group: principal ID should be provided by end user so an exception will be thrown;
+ // In other cases (Other/UserOwner/GroupOwner), a new GUID will be created and served as principal id.
+ if (principalId == Guid.Empty)
+ {
+ if (aceType != AclType.Other && aceType != AclType.UserObj && aceType != AclType.GroupObj)
+ {
+ throw new InvalidOperationException(Properties.Resources.MissingPrincipalId);
+ }
+
+ principalId = Guid.NewGuid();
+ }
+
+ var parameters = new AclCreateOrUpdateParameters(aceType, principalId, GetPermissionType(permissions));
+
+ // If catalog item type is not specified, grant an ACL entry to catalog
+ if (string.IsNullOrEmpty(catalogItemType))
+ {
+ _catalogClient.Catalog.GrantAcl(accountName, parameters);
+ }
+ else
+ {
+ // If catalog item type is specified, grant an ACL entry to catalog item
+ if (string.IsNullOrEmpty(path?.FullCatalogItemPath))
+ {
+ throw new InvalidOperationException(Properties.Resources.MissingCatalogPathForAclOperation);
+ }
+
+ var itemType = (DataLakeAnalyticsEnums.CatalogItemType)Enum.Parse(typeof(DataLakeAnalyticsEnums.CatalogItemType), catalogItemType, true);
+ switch (itemType)
+ {
+ case DataLakeAnalyticsEnums.CatalogItemType.Database:
+ _catalogClient.Catalog.GrantAclToDatabase(accountName, path.DatabaseName, parameters);
+ break;
+
+ default: throw new ArgumentException($"ACL operations are unsupported for catatlog item type: {itemType}");
+ }
+ }
+ }
+
+ public void RemoveCatalogItemAclEntry(
+ string accountName,
+ CatalogPathInstance path,
+ string catalogItemType,
+ string aceType,
+ Guid principalId)
+ {
+ // Make sure principal ID is not empty GUID.
+ // When principal ID is empty GUID:
+ // If ACE type is User or Group: principal ID should be provided by end user so an exception will be thrown;
+ // If ACE type is Other, a new GUID will be created and served as principal id.
+ if (principalId == Guid.Empty)
+ {
+ if (aceType != AclType.Other && aceType != AclType.UserObj && aceType != AclType.GroupObj)
+ {
+ throw new InvalidOperationException(Properties.Resources.MissingPrincipalId);
+ }
+
+ principalId = Guid.NewGuid();
+ }
+
+ var parameters = new AclDeleteParameters(aceType, principalId);
+
+ // If catalog item type is not specified, revoke an ACL entry to catalog
+ if (string.IsNullOrEmpty(catalogItemType))
+ {
+ _catalogClient.Catalog.RevokeAcl(accountName, parameters);
+ }
+ else
+ {
+ // If catalog item type is specified, revoke an ACL entry to catalog item
+ if (string.IsNullOrEmpty(path?.FullCatalogItemPath))
+ {
+ throw new InvalidOperationException(Properties.Resources.MissingCatalogPathForAclOperation);
+ }
+
+ var itemType = (DataLakeAnalyticsEnums.CatalogItemType)Enum.Parse(typeof(DataLakeAnalyticsEnums.CatalogItemType), catalogItemType, true);
+ switch (itemType)
+ {
+ case DataLakeAnalyticsEnums.CatalogItemType.Database:
+ _catalogClient.Catalog.RevokeAclFromDatabase(accountName, path.DatabaseName, parameters);
+ break;
+
+ default: throw new ArgumentException($"ACL operations are unsupported for catatlog item type: {itemType}");
+ }
+ }
+ }
+
private USqlDatabase GetDatabase(string accountName, string databaseName)
{
return _catalogClient.Catalog.GetDatabase(accountName, databaseName);
@@ -1177,7 +1296,7 @@ public ComputePolicy CreateComputePolicy(string resourceGroupName, string accoun
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- return _accountClient.ComputePolicies.CreateOrUpdate(resourceGroupName, accountName, policyName, new ComputePolicyCreateOrUpdateParameters
+ return _accountClient.ComputePolicies.CreateOrUpdate(resourceGroupName, accountName, policyName, new CreateOrUpdateComputePolicyParameters
{
ObjectId = objectId,
ObjectType = objectType,
@@ -1193,7 +1312,7 @@ public ComputePolicy UpdateComputePolicy(string resourceGroupName, string accoun
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- return _accountClient.ComputePolicies.Update(resourceGroupName, accountName, policyName, new ComputePolicy
+ return _accountClient.ComputePolicies.Update(resourceGroupName, accountName, policyName, new UpdateComputePolicyParameters
{
MaxDegreeOfParallelismPerJob = maxAnalyticsUnitsPerJob,
MinPriorityPerJob = minPriorityPerJob
@@ -1324,7 +1443,7 @@ public List ListJobs(string accountName, string filter, int
top = 500;
}
- var parameters = new ODataQuery
+ var parameters = new ODataQuery
{
Filter = filter,
Skip = skip,
@@ -1522,6 +1641,31 @@ private bool IsCatalogItemOrList(CatalogPathInstance path, DataLakeAnalyticsEnum
return isList;
}
-#endregion
+
+ private static List GetCatalogItemAclEntry(IPage firstPage, Func> listAclsNext)
+ {
+ var toReturn = new List();
+ var currentPage = firstPage;
+ toReturn.AddRange(currentPage);
+ while (!string.IsNullOrEmpty(currentPage.NextPageLink))
+ {
+ currentPage = listAclsNext(currentPage.NextPageLink);
+ toReturn.AddRange(currentPage);
+ }
+
+ return toReturn;
+ }
+
+ private static string GetPermissionType(DataLakeAnalyticsEnums.PermissionType permission)
+ {
+ switch (permission)
+ {
+ case DataLakeAnalyticsEnums.PermissionType.None: return PermissionType.None;
+ case DataLakeAnalyticsEnums.PermissionType.Read: return PermissionType.Use;
+ case DataLakeAnalyticsEnums.PermissionType.ReadWrite: return PermissionType.All;
+ default: throw new ArgumentException("PermissionType is invalid");
+ }
+ }
+ #endregion
}
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsEnums.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsEnums.cs
index 5b4642d99f35..26dce5912daf 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsEnums.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsEnums.cs
@@ -53,5 +53,12 @@ public enum ExtendedJobData
DebugInfo,
Statistics
};
+
+ public enum PermissionType
+ {
+ None,
+ Read,
+ ReadWrite
+ };
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAccount.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAccount.cs
index 21bb27a12bdb..a7a2069fe63c 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAccount.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAccount.cs
@@ -38,33 +38,33 @@ public class PSDataLakeAnalyticsAccount : DataLakeAnalyticsAccount
public PSDataLakeAnalyticsAccount(DataLakeAnalyticsAccount baseAccount) :
base(
- baseAccount.Location,
- baseAccount.DefaultDataLakeStoreAccount,
- baseAccount.DataLakeStoreAccounts,
- baseAccount.Id,
- baseAccount.Name,
- baseAccount.Type,
- baseAccount.Tags,
- baseAccount.ProvisioningState,
- baseAccount.State,
- baseAccount.CreationTime,
- baseAccount.LastModifiedTime,
- baseAccount.Endpoint,
- baseAccount.AccountId,
- baseAccount.MaxDegreeOfParallelism,
- baseAccount.QueryStoreRetention,
- baseAccount.MaxJobCount,
- baseAccount.SystemMaxDegreeOfParallelism,
- baseAccount.SystemMaxJobCount,
- baseAccount.StorageAccounts,
- baseAccount.NewTier,
- baseAccount.CurrentTier,
- baseAccount.FirewallState,
- baseAccount.FirewallAllowAzureIps,
- baseAccount.FirewallRules,
- baseAccount.MaxDegreeOfParallelismPerJob,
- baseAccount.MinPriorityPerJob,
- baseAccount.ComputePolicies)
+ id: baseAccount.Id,
+ name: baseAccount.Name,
+ type: baseAccount.Type,
+ location: baseAccount.Location,
+ tags: baseAccount.Tags,
+ accountId: baseAccount.AccountId,
+ provisioningState: baseAccount.ProvisioningState,
+ state: baseAccount.State,
+ creationTime: baseAccount.CreationTime,
+ lastModifiedTime: baseAccount.LastModifiedTime,
+ endpoint: baseAccount.Endpoint,
+ defaultDataLakeStoreAccount: baseAccount.DefaultDataLakeStoreAccount,
+ dataLakeStoreAccounts: baseAccount.DataLakeStoreAccounts,
+ storageAccounts: baseAccount.StorageAccounts,
+ computePolicies: baseAccount.ComputePolicies,
+ firewallRules: baseAccount.FirewallRules,
+ firewallState: baseAccount.FirewallState,
+ firewallAllowAzureIps: baseAccount.FirewallAllowAzureIps,
+ newTier: baseAccount.NewTier,
+ currentTier: baseAccount.CurrentTier,
+ maxJobCount: baseAccount.MaxJobCount,
+ systemMaxJobCount: baseAccount.SystemMaxJobCount,
+ maxDegreeOfParallelism: baseAccount.MaxDegreeOfParallelism,
+ systemMaxDegreeOfParallelism: baseAccount.SystemMaxDegreeOfParallelism,
+ maxDegreeOfParallelismPerJob: baseAccount.MaxDegreeOfParallelismPerJob,
+ minPriorityPerJob: baseAccount.MinPriorityPerJob,
+ queryStoreRetention: baseAccount.QueryStoreRetention)
{
if (baseAccount.DataLakeStoreAccounts != null)
{
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAccountBasic.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAccountBasic.cs
index 466265b2cf3f..3dbc69572add 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAccountBasic.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAccountBasic.cs
@@ -79,7 +79,7 @@ public class PSDataLakeAnalyticsAccountBasic : DataLakeAnalyticsAccountBasic
/// with this account.
///
[Obsolete("This property is in DataLakeAnalyticsAccount but removed in DataLakeAnalyticsAccountBasic because the server does not return this property when listing accounts. This will be removed in a future release.")]
- public IList StorageAccounts { get; private set; }
+ public IList StorageAccounts { get; private set; }
///
/// Gets or sets the commitment tier for the next month. Possible
@@ -146,21 +146,21 @@ public class PSDataLakeAnalyticsAccountBasic : DataLakeAnalyticsAccountBasic
/// account.
///
[Obsolete("This property is in DataLakeAnalyticsAccount but removed in DataLakeAnalyticsAccountBasic because the server does not return this property when listing accounts. This will be removed in a future release.")]
- public IList ComputePolicies { get; private set; }
+ public IList ComputePolicies { get; private set; }
public PSDataLakeAnalyticsAccountBasic(DataLakeAnalyticsAccountBasic baseAccount) :
base(
- baseAccount.Location,
baseAccount.Id,
baseAccount.Name,
baseAccount.Type,
+ baseAccount.Location,
baseAccount.Tags,
+ baseAccount.AccountId,
baseAccount.ProvisioningState,
baseAccount.State,
baseAccount.CreationTime,
baseAccount.LastModifiedTime,
- baseAccount.Endpoint,
- baseAccount.AccountId)
+ baseAccount.Endpoint)
{
}
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAcl.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAcl.cs
new file mode 100644
index 000000000000..76e3df2f8077
--- /dev/null
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsAcl.cs
@@ -0,0 +1,57 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
+using System;
+
+namespace Microsoft.Azure.Commands.DataLakeAnalytics.Models
+{
+ public class PSDataLakeAnalyticsAcl
+ {
+ public string Type { get; set; }
+
+ public string Id { get; set; }
+
+ public DataLakeAnalyticsEnums.PermissionType Permissions { get; set; }
+
+ public PSDataLakeAnalyticsAcl(Acl baseAcl)
+ {
+ Type = MapAceType(baseAcl.AceType);
+ Id = baseAcl.PrincipalId?.ToString() ?? string.Empty;
+ Permissions = MapPermissionType(baseAcl.Permission);
+ }
+
+ private static string MapAceType(string aceType)
+ {
+ switch (aceType)
+ {
+ case AclType.User: case AclType.Group: case AclType.Other: return aceType;
+ case AclType.UserObj: return "UserOwner";
+ case AclType.GroupObj: return "GroupOwner";
+ default: throw new ArgumentException("AceType is invalid");
+ }
+ }
+
+ private static DataLakeAnalyticsEnums.PermissionType MapPermissionType(string permissionType)
+ {
+ switch (permissionType)
+ {
+ case PermissionType.None: return DataLakeAnalyticsEnums.PermissionType.None;
+ case PermissionType.Use: return DataLakeAnalyticsEnums.PermissionType.Read;
+ case PermissionType.All: return DataLakeAnalyticsEnums.PermissionType.ReadWrite;
+ default: throw new ArgumentException("PermissionType is invalid");
+ }
+ }
+ }
+}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsComputePolicy.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsComputePolicy.cs
index 93f91e5d2572..422b9cef9078 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsComputePolicy.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeAnalyticsComputePolicy.cs
@@ -23,7 +23,9 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics.Models
public class PSDataLakeAnalyticsComputePolicy : ComputePolicy
{
public PSDataLakeAnalyticsComputePolicy(ComputePolicy basePolicy) :
- base(basePolicy.Name,
+ base(basePolicy.Id,
+ basePolicy.Name,
+ basePolicy.Type,
basePolicy.ObjectId,
basePolicy.ObjectType,
basePolicy.MaxDegreeOfParallelismPerJob,
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeStoreAccountInfo.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeStoreAccountInfo.cs
index a30679b94904..a9d247a550d1 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeStoreAccountInfo.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSDataLakeStoreAccountInfo.cs
@@ -21,14 +21,14 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics.Models
/// A wrapper for all ADLA supported data sources.
/// This object is returned from a GET
///
- public class PSDataLakeStoreAccountInfo : DataLakeStoreAccountInfo
+ public class PSDataLakeStoreAccountInfo : DataLakeStoreAccountInformation
{
- public PSDataLakeStoreAccountInfo(DataLakeStoreAccountInfo baseAccount):
+ public PSDataLakeStoreAccountInfo(DataLakeStoreAccountInformation baseAccount):
base(
- baseAccount.Name,
- baseAccount.Id,
- baseAccount.Type,
- baseAccount.Suffix)
+ id: baseAccount.Id,
+ name: baseAccount.Name,
+ type: baseAccount.Type,
+ suffix: baseAccount.Suffix)
{ }
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSStorageAccountInfo.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSStorageAccountInfo.cs
index d1ca4b2d22eb..6db5469335b0 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSStorageAccountInfo.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/PSStorageAccountInfo.cs
@@ -21,15 +21,17 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics.Models
/// A wrapper for all ADLA supported data sources.
/// This object is returned from a GET
///
- public class PSStorageAccountInfo : StorageAccountInfo
+ public class PSStorageAccountInfo : StorageAccountInformation
{
- public PSStorageAccountInfo(StorageAccountInfo baseAccount) :
+ [Obsolete("This property is no longer populated and will be removed in a future release")]
+ public string AccessKey { get; set; }
+
+ public PSStorageAccountInfo(StorageAccountInformation baseAccount) :
base(
- baseAccount.Name,
- baseAccount.AccessKey,
- baseAccount.Id,
- baseAccount.Type,
- baseAccount.Suffix)
+ id: baseAccount.Id,
+ name: baseAccount.Name,
+ type: baseAccount.Type,
+ suffix: baseAccount.Suffix)
{ }
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs
index e6cbdadff26b..e85252efbd9c 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs
@@ -249,6 +249,15 @@ internal static string LongRunningOperationFailed {
}
}
+ ///
+ /// Looks up a localized string similar to Invalid empty catalog path. A catalog path is required when listing or updating ACLs for catalog item..
+ ///
+ internal static string MissingCatalogPathForAclOperation {
+ get {
+ return ResourceManager.GetString("MissingCatalogPathForAclOperation", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to -MaxAnalyticsUnitsPerJob or -MinPriorityPerJob or both must be specified when creating or updating a compute policy..
///
@@ -258,6 +267,15 @@ internal static string MissingComputePolicyField {
}
}
+ ///
+ /// Looks up a localized string similar to -ObjectId must be specified when updating or removing ACLs..
+ ///
+ internal static string MissingPrincipalId {
+ get {
+ return ResourceManager.GetString("MissingPrincipalId", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to More than {0} jobs exist in the account. Specify -Top with a larger value to retrieve more jobs. Note that large values of -Top will take time to retrieve all items..
///
@@ -295,7 +313,7 @@ internal static string NoPortSpecified {
}
///
- /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Login-AzureRMAccount to login..
+ /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRMAccount to login..
///
internal static string NoSubscriptionInContext {
get {
@@ -303,6 +321,15 @@ internal static string NoSubscriptionInContext {
}
}
+ ///
+ /// Looks up a localized string similar to Cannot find principal using the specified object id.
+ ///
+ internal static string PrincipalNotFound {
+ get {
+ return ResourceManager.GetString("PrincipalNotFound", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Removing Data Lake Analytics account '{0}' ....
///
@@ -321,6 +348,15 @@ internal static string RemoveDataLakeAnalyticsBlobAccount {
}
}
+ ///
+ /// Looks up a localized string similar to Removing Data Lake Analytics catalog ACL for '{0}' ....
+ ///
+ internal static string RemoveDataLakeAnalyticsCatalogAcl {
+ get {
+ return ResourceManager.GetString("RemoveDataLakeAnalyticsCatalogAcl", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Removing Data Lake Analytics catalog credential '{0}' ....
///
@@ -339,6 +375,15 @@ internal static string RemoveDataLakeAnalyticsCatalogCredentialCascade {
}
}
+ ///
+ /// Looks up a localized string similar to Removing Data Lake Analytics catalog ACL at path: '{0}' ....
+ ///
+ internal static string RemoveDataLakeAnalyticsCatalogItemAcl {
+ get {
+ return ResourceManager.GetString("RemoveDataLakeAnalyticsCatalogItemAcl", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Removing Data Lake Analytics catalog secret '{0}' ....
///
@@ -402,6 +447,15 @@ internal static string RemovingDataLakeAnalyticsBlobAccount {
}
}
+ ///
+ /// Looks up a localized string similar to Are you sure you want to remove Data Lake Analytics catalog ACL for '{0}'?.
+ ///
+ internal static string RemovingDataLakeAnalyticsCatalogAcl {
+ get {
+ return ResourceManager.GetString("RemovingDataLakeAnalyticsCatalogAcl", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Are you sure you want to remove Data Lake Analytics catalog credential '{0}'?.
///
@@ -474,6 +528,15 @@ internal static string ScriptParameterValueIsNull {
}
}
+ ///
+ /// Looks up a localized string similar to Setting Data Lake Analytics catalog ACL entry for '{0}' ... .
+ ///
+ internal static string SetDataLakeCatalogAclEntry {
+ get {
+ return ResourceManager.GetString("SetDataLakeCatalogAclEntry", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Updating Data Lake Analytics catalog credential '{0}' in database '{1}' ....
///
@@ -483,6 +546,15 @@ internal static string SetDataLakeCatalogCredential {
}
}
+ ///
+ /// Looks up a localized string similar to Setting Data Lake Analytics catalog item ACL entry at path: '{0}' ....
+ ///
+ internal static string SetDataLakeCatalogItemAclEntry {
+ get {
+ return ResourceManager.GetString("SetDataLakeCatalogItemAclEntry", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Setting the Data Lake Analytics firewall rule: '{0}' ....
///
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.resx b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.resx
index a5c30a529b0e..0f0ef8ed2f35 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.resx
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.resx
@@ -279,4 +279,28 @@
The script parameter value for '{0}' is null.
+
+ Setting Data Lake Analytics catalog ACL entry for '{0}' ...
+
+
+ Removing Data Lake Analytics catalog ACL for '{0}' ...
+
+
+ Removing Data Lake Analytics catalog ACL at path: '{0}' ...
+
+
+ Are you sure you want to remove Data Lake Analytics catalog ACL for '{0}'?
+
+
+ Setting Data Lake Analytics catalog item ACL entry at path: '{0}' ...
+
+
+ Invalid empty catalog path. A catalog path is required when listing or updating ACLs for catalog item.
+
+
+ -ObjectId must be specified when updating or removing ACLs.
+
+
+ Cannot find principal using the specified object id
+
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/AzureRM.DataLakeAnalytics.md b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/AzureRM.DataLakeAnalytics.md
index ad81486a23f5..5a9eef3b2e61 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/AzureRM.DataLakeAnalytics.md
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/AzureRM.DataLakeAnalytics.md
@@ -1,4 +1,4 @@
----
+---
Module Name: AzureRM.DataLakeAnalytics
Module Guid: eca73aa1-a68f-4ceb-9775-70759316a57b
Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azurerm.datalakeanalytics
@@ -23,6 +23,9 @@ Gets information about a Data Lake Analytics account.
### [Get-AzureRmDataLakeAnalyticsCatalogItem](Get-AzureRmDataLakeAnalyticsCatalogItem.md)
Gets a Data Lake Analytics catalog item or types of items.
+### [Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
+Gets an entry in the ACL of a catalog or catalog item in Data Lake Analytics.
+
### [Get-AzureRmDataLakeAnalyticsComputePolicy](Get-AzureRmDataLakeAnalyticsComputePolicy.md)
Gets a Data Lake Analytics compute policy or list of compute policies.
@@ -59,6 +62,9 @@ Deletes a Data Lake Analytics account.
### [Remove-AzureRmDataLakeAnalyticsCatalogCredential](Remove-AzureRmDataLakeAnalyticsCatalogCredential.md)
Deletes an Azure Data Lake Analytics credential.
+### [Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
+Deletes an entry from the ACL of a catalog or catalog item in Data Lake Analytics.
+
### [Remove-AzureRmDataLakeAnalyticsCatalogSecret](Remove-AzureRmDataLakeAnalyticsCatalogSecret.md)
Deletes a Data Lake Analytics secret.
@@ -77,6 +83,9 @@ Modifies a Data Lake Analytics account.
### [Set-AzureRmDataLakeAnalyticsCatalogCredential](Set-AzureRmDataLakeAnalyticsCatalogCredential.md)
Modifies an Azure Data Lake Analytics catalog credential password.
+### [Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
+Modifies an entry in the ACL of a catalog or catalog item in Data Lake Analytics.
+
### [Set-AzureRmDataLakeAnalyticsCatalogSecret](Set-AzureRmDataLakeAnalyticsCatalogSecret.md)
Modifies a Data Lake Analytics catalog secret.
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md
new file mode 100644
index 000000000000..ba79e2d0eacf
--- /dev/null
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md
@@ -0,0 +1,243 @@
+---
+external help file: Microsoft.Azure.Commands.DataLakeAnalytics.dll-Help.xml
+Module Name: AzureRM.DataLakeAnalytics
+online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.datalakeanalytics/get-azurermdatalakeanalyticscatalogitemaclentry
+schema: 2.0.0
+---
+
+# Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry
+
+## SYNOPSIS
+Gets an entry in the ACL of a catalog or catalog item in Data Lake Analytics.
+
+## SYNTAX
+
+### GetCatalogAclEntry (Default)
+```
+Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-DefaultProfile ]
+ []
+```
+
+### GetCatalogAclEntryForUserOwner
+```
+Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-UserOwner]
+ [-DefaultProfile ] []
+```
+
+### GetCatalogAclEntryForGroupOwner
+```
+Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-GroupOwner]
+ [-DefaultProfile ] []
+```
+
+### GetCatalogItemAclEntry
+```
+Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-ItemType]
+ [-Path] [-DefaultProfile ] []
+```
+
+### GetCatalogItemAclEntryForUserOwner
+```
+Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-UserOwner] [-ItemType]
+ [-Path] [-DefaultProfile ] []
+```
+
+### GetCatalogItemAclEntryForGroupOwner
+```
+Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-GroupOwner] [-ItemType]
+ [-Path] [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry** cmdlet gets a list of entries (ACEs) in the access control list (ACL) of a catalog or catalog item in Data Lake Analytics.
+
+## EXAMPLES
+
+### Example 1: Get the ACL for a catalog
+```powershell
+PS C:\> Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla"
+
+Type Id Permissions
+---- -- -----------
+User 90a6f74b-fd73-490e-900a-c4f0f9694d02 Read
+Group 902b155a-5601-4ca8-8178-ad3289211f88 ReadWrite
+Other 00000000-0000-0000-0000-000000000000 None
+```
+
+This command gets the ACL for the catalog of the specified Data Lake Analytics account
+
+### Example 2: Get the ACL entry of user owner for a catalog
+```powershell
+PS C:\> Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -UserOwner
+
+Type Id Permissions
+---- -- -----------
+UserOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc ReadWrite
+```
+
+This command gets ACL entry of the user owner for the catalog of the specified Data Lake Analytics account
+
+### Example 3: Get the ACL entry of group owner for a catalog
+```powershell
+PS C:\> Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -GroupOwner
+
+Type Id Permissions
+---- -- -----------
+GroupOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc ReadWrite
+```
+
+This command gets ACL entry of the group owner for the catalog of the specified Data Lake Analytics account
+
+### Example 4: Get the ACL for a database
+```powershell
+PS C:\> Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -ItemType Database -Path "databaseName"
+
+Type Id Permissions
+---- -- -----------
+User 90a6f74b-fd73-490e-900a-c4f0f9694d02 Read
+Group 902b155a-5601-4ca8-8178-ad3289211f88 ReadWrite
+Other 00000000-0000-0000-0000-000000000000 None
+```
+
+This command gets the ACL for the database of the specified Data Lake Analytics account
+
+### Example 5: Get the ACL entry of user owner for a database
+```powershell
+PS C:\> Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -UserOwner -ItemType Database -Path "databaseName"
+
+Type Id Permissions
+---- -- -----------
+UserOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc ReadWrite
+```
+
+This command gets the ACL entry of the user owner for the database of the specified Data Lake Analytics account
+
+### Example 6: Get the ACL entry of group owner for a database
+```powershell
+PS C:\> Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -GroupOwner -ItemType Database -Path "databaseName"
+
+Type Id Permissions
+---- -- -----------
+GroupOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc ReadWrite
+```
+
+This command gets the ACL entry of the group owner for the database of the specified Data Lake Analytics account
+
+## PARAMETERS
+
+### -Account
+Specifies the Data Lake Analytics account name.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases: AccountName
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -GroupOwner
+Get ACL entry of catalog for group owner
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: GetCatalogAclEntryForGroupOwner, GetCatalogItemAclEntryForGroupOwner
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ItemType
+Specifies the type of the catalog or catalog item(s). The acceptable values for this parameter are:
+- Catalog
+- Database
+
+```yaml
+Type: String
+Parameter Sets: GetCatalogItemAclEntry, GetCatalogItemAclEntryForUserOwner, GetCatalogItemAclEntryForGroupOwner
+Aliases:
+Accepted values: Catalog, Database
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Path
+Specifies the Data Lake Analytics path of an catalog or catalog item.
+The parts of the path should be separated by a period (.).
+
+```yaml
+Type: CatalogPathInstance
+Parameter Sets: GetCatalogItemAclEntry, GetCatalogItemAclEntryForUserOwner, GetCatalogItemAclEntryForGroupOwner
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -UserOwner
+Get ACL entry of catalog for user owner.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: GetCatalogAclEntryForUserOwner, GetCatalogItemAclEntryForUserOwner
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+This cmdlet does not accept any input.
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.DataLakeAnalytics.Models.PSDataLakeAnalyticsAcl
+The list of ACL entries for the specified catalog or catalog item(s).
+
+## NOTES
+
+## RELATED LINKS
+
+[U-SQL now offers database level access control](https://github.com/Azure/AzureDataLake/blob/master/docs/Release_Notes/2016/2016_08_01/USQL_Release_Notes_2016_08_01.md#u-sql-now-offers-database-level-access-control)
+
+[Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
+
+[Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md
new file mode 100644
index 000000000000..48477e4335ac
--- /dev/null
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md
@@ -0,0 +1,238 @@
+---
+external help file: Microsoft.Azure.Commands.DataLakeAnalytics.dll-Help.xml
+Module Name: AzureRM.DataLakeAnalytics
+online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.datalakeanalytics/remove-azurermdatalakeanalyticscatalogitemaclentry
+schema: 2.0.0
+---
+
+# Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry
+
+## SYNOPSIS
+Deletes an entry from the ACL of a catalog or catalog item in Data Lake Analytics.
+
+## SYNTAX
+
+### RemoveCatalogAclEntryForUser (Default)
+```
+Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-User] -ObjectId [-PassThru]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### RemoveCatalogItemAclEntryForUser
+```
+Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-User] -ObjectId
+ [-ItemType] [-Path] [-PassThru] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+### RemoveCatalogAclEntryForGroup
+```
+Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-Group] -ObjectId [-PassThru]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### RemoveCatalogItemAclEntryForGroup
+```
+Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-Group] -ObjectId
+ [-ItemType] [-Path] [-PassThru] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry** cmdlet removes an entry (ACE) from the access control list (ACL) of a catalog or catalog item in Data Lake Analytics.
+
+## EXAMPLES
+
+### Example 1: Remove the user ACL for a catalog
+```powershell
+PS C:\> Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -User -ObjectId (Get-AzureRmADUser -Mail "PattiFuller@contoso.com").Id
+```
+
+This command removes the catalog ACL for Patti Fuller of the contosoadla account.
+
+### Example 2: Remove the user ACL for a database
+```powershell
+PS C:\> Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -User -ObjectId (Get-AzureRmADUser -Mail "PattiFuller@contoso.com").Id -ItemType Database -Path "databaseName"
+```
+
+This command removes the database ACL for Patti Fuller of the contosoadla account.
+
+## PARAMETERS
+
+### -Account
+Specifies the Data Lake Analytics account name.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases: AccountName
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Group
+Remove ACL entry of catalog for group.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: RemoveCatalogAclEntryForGroup, RemoveCatalogItemAclEntryForGroup
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ItemType
+Specifies the type of the catalog or catalog item(s). The acceptable values for this parameter are:
+- Catalog
+- Database
+
+```yaml
+Type: String
+Parameter Sets: RemoveCatalogItemAclEntryForUser, RemoveCatalogItemAclEntryForGroup
+Aliases:
+Accepted values: Catalog, Database
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ObjectId
+The identity of the user to remove.
+
+```yaml
+Type: Guid
+Parameter Sets: (All)
+Aliases: Id, UserId
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -PassThru
+Indicates a boolean response should be returned indicating the result of the delete operation.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Path
+Specifies the Data Lake Analytics path of an catalog or catalog item.
+The parts of the path should be separated by a period (.).
+
+```yaml
+Type: CatalogPathInstance
+Parameter Sets: RemoveCatalogItemAclEntryForUser, RemoveCatalogItemAclEntryForGroup
+Aliases:
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -User
+Remove ACL entry of catalog for user.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: RemoveCatalogAclEntryForUser, RemoveCatalogItemAclEntryForUser
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+This cmdlet does not accept any input.
+
+## OUTPUTS
+
+### bool
+If PassThru is specified, returns true upon successful completion.
+
+## NOTES
+
+## RELATED LINKS
+
+[U-SQL now offers database level access control](https://github.com/Azure/AzureDataLake/blob/master/docs/Release_Notes/2016/2016_08_01/USQL_Release_Notes_2016_08_01.md#u-sql-now-offers-database-level-access-control)
+
+[Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
+
+[Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md
new file mode 100644
index 000000000000..9e3f167ea100
--- /dev/null
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/help/Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md
@@ -0,0 +1,394 @@
+---
+external help file: Microsoft.Azure.Commands.DataLakeAnalytics.dll-Help.xml
+Module Name: AzureRM.DataLakeAnalytics
+online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.datalakeanalytics/set-azurermdatalakeanalyticscatalogitemaclentry
+schema: 2.0.0
+---
+
+# Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry
+
+## SYNOPSIS
+Modifies an entry in the ACL of a catalog or catalog item in Data Lake Analytics.
+
+## SYNTAX
+
+### SetCatalogAclEntryForUser (Default)
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-User] -ObjectId
+ [-Permissions] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+### SetCatalogItemAclEntryForUser
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-User] -ObjectId
+ [-ItemType] [-Path] [-Permissions]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### SetCatalogAclEntryForGroup
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-Group] -ObjectId
+ [-Permissions] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+### SetCatalogItemAclEntryForGroup
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-Group] -ObjectId
+ [-ItemType] [-Path] [-Permissions]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### SetCatalogAclEntryForOther
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-Other] [-Permissions]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### SetCatalogItemAclEntryForOther
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-Other] [-ItemType]
+ [-Path] [-Permissions] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+### SetCatalogAclEntryForUserOwner
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-UserOwner]
+ [-Permissions] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+### SetCatalogItemAclEntryForUserOwner
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-UserOwner] [-ItemType]
+ [-Path] [-Permissions] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+### SetCatalogAclEntryForGroupOwner
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-GroupOwner]
+ [-Permissions] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+### SetCatalogItemAclEntryForGroupOwner
+```
+Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry [-Account] [-GroupOwner] [-ItemType]
+ [-Path] [-Permissions] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry** cmdlet adds or modifies an entry (ACE) in the access control list (ACL) of a catalog or catalog item in Data Lake Analytics.
+
+## EXAMPLES
+
+### Example 1: Modify user permissions for a catalog
+```powershell
+PS C:\> Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -User -ObjectId (Get-AzureRmADUser -Mail "PattiFuller@contoso.com").Id -Permissions Read
+
+Type Id Permissions
+---- -- -----------
+User 90a6f74b-fd73-490e-900a-c4f0f9694d02 Read
+Group 902b155a-5601-4ca8-8178-ad3289211f88 ReadWrite
+Other 00000000-0000-0000-0000-000000000000 None
+User bd0b55bb-3a57-442a-b2f6-78c95c10ef86 Read
+```
+
+This command modifies the catalog ACE for Patti Fuller to have read permissions.
+
+### Example 2: Modify user Permissions for a database
+```powershell
+PS C:\> Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -User -ObjectId (Get-AzureRmADUser -Mail "PattiFuller@contoso.com").Id -ItemType Database -Path "databaseName" -Permissions Read
+
+Type Id Permissions
+---- -- -----------
+User 90a6f74b-fd73-490e-900a-c4f0f9694d02 Read
+Group 902b155a-5601-4ca8-8178-ad3289211f88 ReadWrite
+Other 00000000-0000-0000-0000-000000000000 None
+User bd0b55bb-3a57-442a-b2f6-78c95c10ef86 Read
+```
+
+This command modifies the database ACE for Patti Fuller to have read permissions.
+
+### Example 3: Modify other permissions for a catalog
+```powershell
+PS C:\> Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -Other -Permissions Read
+
+Type Id Permissions
+---- -- -----------
+User 90a6f74b-fd73-490e-900a-c4f0f9694d02 Read
+Group 902b155a-5601-4ca8-8178-ad3289211f88 ReadWrite
+Other 00000000-0000-0000-0000-000000000000 Read
+User bd0b55bb-3a57-442a-b2f6-78c95c10ef86 Read
+```
+
+This command modifies the catalog ACE for other to have read permissions.
+
+### Example 4: Modify other Permissions for a database
+```powershell
+PS C:\> Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -Other -ItemType Database -Path "databaseName" -Permissions Read
+
+Type Id Permissions
+---- -- -----------
+User 90a6f74b-fd73-490e-900a-c4f0f9694d02 Read
+Group 902b155a-5601-4ca8-8178-ad3289211f88 ReadWrite
+Other 00000000-0000-0000-0000-000000000000 Read
+User bd0b55bb-3a57-442a-b2f6-78c95c10ef86 Read
+```
+
+### Example 5: Modify user owner permissions for a catalog
+```powershell
+PS C:\> Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -UserOwner -Permissions Read
+
+Type Id Permissions
+---- -- -----------
+UserOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc Read
+```
+
+This command sets the owner permission for the account to Read.
+
+### Example 6: Modify user owner Permissions for a database
+```powershell
+PS C:\> Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -UserOwner -ItemType Database -Path "databaseName" -Permissions Read
+
+Type Id Permissions
+---- -- -----------
+GroupOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc Read
+```
+
+This command sets the owner permission for the database to Read.
+
+## PARAMETERS
+
+### -Account
+Specifies the Data Lake Analytics account name.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases: AccountName
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Group
+Set ACL entry of catalog for group.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: SetCatalogAclEntryForGroup, SetCatalogItemAclEntryForGroup
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -GroupOwner
+Set ACL entry of catalog for group owner.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: SetCatalogAclEntryForGroupOwner, SetCatalogItemAclEntryForGroupOwner
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ItemType
+Specifies the type of the catalog or catalog item(s). The acceptable values for this parameter are:
+- Catalog
+- Database
+
+```yaml
+Type: String
+Parameter Sets: SetCatalogItemAclEntryForUser, SetCatalogItemAclEntryForGroup, SetCatalogItemAclEntryForOther, SetCatalogItemAclEntryForUserOwner, SetCatalogItemAclEntryForGroupOwner
+Aliases:
+Accepted values: Catalog, Database
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ObjectId
+The identity of the user to set.
+
+```yaml
+Type: Guid
+Parameter Sets: SetCatalogAclEntryForUser, SetCatalogItemAclEntryForUser, SetCatalogAclEntryForGroup, SetCatalogItemAclEntryForGroup
+Aliases: Id, UserId
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Other
+Set ACL entry of catalog for other.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: SetCatalogAclEntryForOther, SetCatalogItemAclEntryForOther
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Path
+Specifies the Data Lake Analytics path of an catalog or catalog item.
+The parts of the path should be separated by a period (.).
+
+```yaml
+Type: CatalogPathInstance
+Parameter Sets: SetCatalogItemAclEntryForUser, SetCatalogItemAclEntryForGroup, SetCatalogItemAclEntryForOther, SetCatalogItemAclEntryForUserOwner, SetCatalogItemAclEntryForGroupOwner
+Aliases:
+
+Required: True
+Position: 4
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Permissions
+Specifies the permissions for the ACE.
+The acceptable values for this parameter are:
+
+- None
+- Read
+- ReadWrite
+
+```yaml
+Type: PermissionType
+Parameter Sets: (All)
+Aliases:
+Accepted values: None, Read, ReadWrite
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -User
+Set ACL entry of catalog for user.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: SetCatalogAclEntryForUser, SetCatalogItemAclEntryForUser
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -UserOwner
+Set ACL entry of catalog for user owner.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: SetCatalogAclEntryForUserOwner, SetCatalogItemAclEntryForUserOwner
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+This cmdlet does not accept any input.
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.DataLakeAnalytics.Models.PSDataLakeAnalyticsAcl
+The resulting list of ACL entries.
+
+## NOTES
+
+## RELATED LINKS
+
+[Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
+
+[Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry](Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry.md)
+
+[U-SQL now offers database level access control](https://github.com/Azure/AzureDataLake/blob/master/docs/Release_Notes/2016/2016_08_01/USQL_Release_Notes_2016_08_01.md#u-sql-now-offers-database-level-access-control)
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/packages.config b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/packages.config
index 5659933dfcaa..2edcee6193bc 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/packages.config
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/packages.config
@@ -1,4 +1,4 @@
-
+
\ No newline at end of file
diff --git a/tools/StaticAnalysis/Exceptions/AzureRM.DataLakeAnalytics/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/AzureRM.DataLakeAnalytics/BreakingChangeIssues.csv
index 6065f7624a57..775152a639f3 100644
--- a/tools/StaticAnalysis/Exceptions/AzureRM.DataLakeAnalytics/BreakingChangeIssues.csv
+++ b/tools/StaticAnalysis/Exceptions/AzureRM.DataLakeAnalytics/BreakingChangeIssues.csv
@@ -7,3 +7,8 @@
"Microsoft.Azure.Commands.DataLakeAnalytics.dll","Microsoft.Azure.Commands.DataLakeAnalytics.GetAzureDataLakeAnalyticsCatalogItem","Get-AzureRmDataLakeAnalyticsCatalogItem","0","1020","The cmdlet 'Get-AzureRmDataLakeAnalyticsCatalogItem' no longer has output type 'System.Collections.Generic.List`1[Microsoft.Azure.Management.DataLake.Analytics.Models.CatalogItem]'.","Make cmdlet 'Get-AzureRmDataLakeAnalyticsCatalogItem' return type 'System.Collections.Generic.List`1[Microsoft.Azure.Management.DataLake.Analytics.Models.CatalogItem]'."
"Microsoft.Azure.Commands.DataLakeAnalytics.dll","Microsoft.Azure.Commands.DataLakeAnalytics.GetAzureDataLakeAnalyticsJob","Get-AzureRmDataLakeAnalyticsJob","0","1020","The cmdlet 'Get-AzureRmDataLakeAnalyticsJob' no longer has output type 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.DataLakeAnalytics.Models.PSJobInformationBasic]'.","Make cmdlet 'Get-AzureRmDataLakeAnalyticsJob' return type 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.DataLakeAnalytics.Models.PSJobInformationBasic]'."
"Microsoft.Azure.Commands.DataLakeAnalytics.dll","Microsoft.Azure.Commands.DataLakeAnalytics.GetAzureDataLakeAnalyticsAccount","Get-AzureRmDataLakeAnalyticsAccount","0","1020","The cmdlet 'Get-AzureRmDataLakeAnalyticsAccount' no longer has output type 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.DataLakeAnalytics.Models.PSDataLakeAnalyticsAccountBasic]'.","Make cmdlet 'Get-AzureRmDataLakeAnalyticsAccount' return type 'System.Collections.Generic.List`1[Microsoft.Azure.Commands.DataLakeAnalytics.Models.PSDataLakeAnalyticsAccountBasic]'."
+"Microsoft.Azure.Commands.DataLakeAnalytics.dll","Microsoft.Azure.Commands.DataLakeAnalytics.GetAzureDataLakeAnalyticsAccount","Get-AzureRmDataLakeAnalyticsAccount","0","3030","The generic type for 'property ComputePolicies' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicyAccountCreateParameters]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.CreateComputePolicyWithAccountParameters]'.","Change the generic type for 'property ComputePolicies' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicyAccountCreateParameters]'."
+"Microsoft.Azure.Commands.DataLakeAnalytics.dll","Microsoft.Azure.Commands.DataLakeAnalytics.GetAzureDataLakeAnalyticsAccount","Get-AzureRmDataLakeAnalyticsAccount","0","3030","The generic type for 'property StorageAccounts' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.StorageAccountInfo]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.StorageAccountInformation]'.","Change the generic type for 'property StorageAccounts' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.StorageAccountInfo]'."
+"Microsoft.Azure.Commands.DataLakeAnalytics.dll","Microsoft.Azure.Commands.DataLakeAnalytics.GetAzureDataLakeAnalyticsAccount","Get-AzureRmDataLakeAnalyticsAccount","0","3030","The generic type for 'property ComputePolicies' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicyAccountCreateParameters]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicy]'.","Change the generic type for 'property ComputePolicies' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicyAccountCreateParameters]'."
+"Microsoft.Azure.Commands.DataLakeAnalytics.dll","Microsoft.Azure.Commands.DataLakeAnalytics.NewAzureDataLakeAnalyticsAccount","New-AzureRmDataLakeAnalyticsAccount","0","3030","The generic type for 'property ComputePolicies' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicyAccountCreateParameters]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicy]'.","Change the generic type for 'property ComputePolicies' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicyAccountCreateParameters]'."
+"Microsoft.Azure.Commands.DataLakeAnalytics.dll","Microsoft.Azure.Commands.DataLakeAnalytics.SetAzureDataLakeAnalyticsAccount","Set-AzureRmDataLakeAnalyticsAccount","0","3030","The generic type for 'property ComputePolicies' has been changed from 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicyAccountCreateParameters]' to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicy]'.","Change the generic type for 'property ComputePolicies' back to 'System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataLake.Analytics.Models.ComputePolicyAccountCreateParameters]'."